1

我正在试验 Riot Games API。我确定我的 URL 很好,我必须包含的 API 密钥也很好;我的请求没有理由返回 401。起初我以为它与 Eclipse 有关,但将 API 放入我的浏览器中也会返回 401(API 通常返回的 JSON 格式)。我知道有这方面的论坛,但我想也许这里有人可以指出我的程序是否有错误:

public class APITry {
    public static void main(String[] args) throws IOException{

        URL LOLAPI = new URL("https://prod.api.pvp.net/api/lol/na/v1.1/summoner/by-name/RiotSchmick&api_key=<key>"); //<key> is, of course, replaced with my key
        BufferedReader in = new BufferedReader(new InputStreamReader(LOLAPI.openStream()));
        StringBuilder build = new StringBuilder();

        String inputLine;
        while ((inputLine = in.readLine()) != null)
            build.append(in.toString());
        in.close();

        String INFO = build.toString();

        JSONParser prse = new JSONParser();

        try {
            Object obj = prse.parse(in);
            JSONObject PARSED = (JSONObject) obj;
            String message = (String) PARSED.get("message");
            int summonerID = (int) PARSED.get("losses");
            System.out.println("message:" + message);
            System.out.println("retrieved, is " + summonerID);
        } catch (ParseException e) {
            e.printStackTrace();
            System.out.println("parse exception");
        } catch(NullPointerException e) {
            e.printStackTrace();
        } catch(FileNotFoundException e) {
            e.printStackTrace();
        }

    }

我的进口都算了。

4

1 回答 1

1

我查看了您用来调用 API 的 URL。我不确定你在把它放在这里时是否打错了:

https://prod.api.pvp.net/api/lol/na/v1.1/summoner/by-name/RiotSchmick&api_key=<key>

您需要将api_key作为参数传递,因此请在 ie 之前&使用 a而不是ie,如下所示:?api_key

https://prod.api.pvp.net/api/lol/na/v1.1/summoner/by-name/RiotSchmick?api_key=<key>

如果上述情况并非如此,并且您实际上正确地传递了密钥并且仍然得到 {"status": {"message": "Access denied", "status_code": 401}} 响应,那么密钥很可能是无效的。

于 2013-12-15T06:40:36.310 回答