gpt4 book ai didi

java - 对 Challonge 的 HTTP Get 请求返回 robots.txt

转载 作者:行者123 更新时间:2023-11-30 07:09:33 24 4
gpt4 key购买 nike

当发送获取请求以尝试检索挑战括号时,我收到 robots.txt 文件而不是实际的括号。如果我将相同的 URL 复制并粘贴到浏览器中,我会得到预期的 JSON 括号。我想知道我做错了什么以及如何做到这一点,以便以下 Java 方法实际上返回括号而不是 metaname=robots 文本文件。

public String httpGett(String url,String userAgent) throws Exception{
String USER_AGENT = userAgent;
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();

con.setRequestMethod("GET");

con.setRequestProperty("User-Agent", USER_AGENT);

int responseCode = con.getResponseCode();
System.out.println("\nSending 'GET' request to URL : " + url);
System.out.println("Response Code : " + responseCode);

BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();

while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();

//System.out.println(response.toString());
return(response.toString());
}

例如,如果我发送的网址是

https://challonge.com/api/tournaments/example.json?include_matches=1&include_participants=1&api_key=[MYAPI key ]

我在浏览器中输入了网址,我会得到: http://pastebin.com/4W4kmdJV

如果我使用 Java 方法发送 get 请求,我会得到: http://pastebin.com/ifYSSzu3

如何从 Java 方法中获取正确的括号信息?

最佳答案

所以我设法弄清楚我做错了什么。

当我使用时: https://api.challonge.com/v1/tournaments/example.json?include_matches=1&include_participants=1&api_key=[MYAPIKEY]

metaname=robots 链接不再出现,而是不再出现之前的链接,并且我获得了正确的括号信息。

关于java - 对 Challonge 的 HTTP Get 请求返回 robots.txt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39439484/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com