0

我想将长 URL 转换为短 URL。
我已按照文档进行操作,但无法转换 URL。
这导致 403 响应。

我遵循以下方法。

        JSONObject reqObj = new JSONObject();
        reqObj.put("longUrl", LONG_URL_TO_CONVERT);
        reqObj.put("key", API_KEY);

        URL url = new URL("https://www.googleapis.com/urlshortener/v1/url");
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        conn.setRequestProperty("Content-Type", "application/json");
        conn.setRequestMethod("POST");
        conn.setDoOutput(true);

        OutputStream outputStream = conn.getOutputStream();
        outputStream.write(reqObj.toString().getBytes());

        InputStream inputStream = conn.getInputStream();
        String resp = readStream(inputStream);

我尝试使用 GET 请求
https://www.googleapis.com/urlshortener/v1/url?key=API_KEY&longUrl=www.google.com
但它返回错误消息Required parameter: shortUrl

我在这里做错了什么?

4

1 回答 1

1

终于找到了解决办法。
与其将key作为 post 参数添加,不如将其附加到 URL 本身。像
https://www.googleapis.com/urlshortener/v1/url?key= {API_KEY}
并且它按预期工作。

于 2016-10-24T06:00:30.680 回答