java - 地点详细信息请求失败 - 引用太长

标签 java google-maps google-places-api

我有一个小型 Java 应用程序,给定一个 google places 的引用列表,必须取回每个所述 google places 的 ID(长话短说,我们存储的是 places 的引用而不是它们的 Id,而且只是现在意识到每个地方的引用都不是唯一的)。

我的应用程序对列表中大约 95% 的位置都能完美运行,但对某些记录失败并显示“NOT_FOUND”状态代码。一些调查表明,这些特定地点的地点引用(与 https://maps.googleapis.com/maps/api/place/details/json?sensor=false&key=myApiKey 前缀结合使用时)对于 URL 而言大约有 2 个字符太长。最后几个字符被截断了。

我最初的想法是,我只会向 google places API 发出 POST 请求,但当我将其作为 POST 请求发送时,我从 google 服务器返回了“REQUEST_DENIED”状态代码。

是否存在这方面的问题,或者这只是 google places API 的一个紧急错误(现在地点的数量已经将引用推得太长了?)。

我还应该注意到,失败的地方都是我们的应用程序最近添加的。

这就是我当前(95% 的工作)代码的样子:

public static JSONObject getPlaceInfo(String reference) throws Exception
{
URL places = new URL("https://maps.googleapis.com/maps/api/place/details/json?sensor=false&key="+apiKey+"&reference="+reference);
    URLConnection con = places.openConnection();
    BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
    StringBuffer input = new StringBuffer();
    String inputLine;
    while ((inputLine = in.readLine()) != null) 
        input.append(inputLine);
    in.close();

    JSONObject response = (JSONObject) JSONSerializer.toJSON(input.toString());
    return response;
}

这就是我的“ACCESS_DENIED”邮政编码的样子:

public static JSONObject getPlaceInfo(String reference) throws Exception
{
    String data = URLEncoder.encode("sensor", "UTF-8") + "=" + URLEncoder.encode("true", "UTF-8");
    data += "&" + URLEncoder.encode("key", "UTF-8") + "=" + URLEncoder.encode(apiKey, "UTF-8");
    data += "&" + URLEncoder.encode("reference", "UTF-8") + "=" + URLEncoder.encode(reference, "UTF-8");

    URL places = new URL("https://maps.googleapis.com/maps/api/place/details/json");
    URLConnection con = places.openConnection();

    con.setDoOutput(true);
    OutputStreamWriter wr = new OutputStreamWriter(con.getOutputStream());
    wr.write(data);
    wr.flush();

    BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
    StringBuffer input = new StringBuffer();
    String inputLine;
    while ((inputLine = in.readLine()) != null) 
        input.append(inputLine);
    in.close();

    JSONObject response = (JSONObject) JSONSerializer.toJSON(input.toString());
    return response;
}

引用失败的一个例子是:

CnRtAAAAxm0DftH1c5c6-krpWWZTT51uf0rDqCK4jikWV6eGfXlmKxrlsdrhFBOCgWOqChc1Au37inhf8HzjEbRdpMGghYy3dxGt17FEb8ys2CZCLHyC--7Vf1jn-Yn1kfZfzxznTJAbIEg6422q1kRbh0nl1hIQ71tmdOVvhdTfY_LOdbEoahoUnP0SAoOFNkk_KBIvTW30btEwkZs

提前致谢!

最佳答案

您在正文中发送请求参数,API 不支持。关于 GET 和请求参数有一个很好的答案:

HTTP GET with request body

以下代码适用于地点详情请求:

private static final String PLACES_API_BASE = "https://maps.googleapis.com/maps/api/place";
private static final String TYPE_DETAILS = "/details";
private static final String OUT_JSON = "/json";

HttpURLConnection conn = null;
StringBuilder jsonResults = new StringBuilder();
try {
    StringBuilder sb = new StringBuilder(PLACES_API_BASE);
    sb.append(TYPE_DETAILS);
    sb.append(OUT_JSON);
    sb.append("?sensor=false");
    sb.append("&key=" + API_KEY);
    sb.append("&reference=" + URLEncoder.encode(reference, "utf8"));

    URL url = new URL(sb.toString());
    conn = (HttpURLConnection) url.openConnection();
    InputStreamReader in = new InputStreamReader(conn.getInputStream());

    // Load the results into a StringBuilder
    int read;
    char[] buff = new char[1024];
    while ((read = in.read(buff)) != -1) {
        jsonResults.append(buff, 0, read);
    }
} catch (MalformedURLException e) {
    return null;
} catch (IOException e) {
    return null;
} finally {
    if (conn != null) {
        conn.disconnect();
    }
}

try {
    // Create a JSON object hierarchy from the results
    JSONObject jsonObj = new JSONObject(jsonResults.toString()).getJSONObject("result");
    jsonObj.getString("name");
} catch (JSONException e) {
    Log.e(LOG_TAG, "Error processing JSON results", e);
}

关于java - 地点详细信息请求失败 - 引用太长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11207751/

相关文章:

android - 我想过滤位置 (LatLng)

android - 谷歌放置 API 以在自动完成中获取机场名称

javascript - ng-click 动态创建的按钮的范围在 Google map 上不起作用

java - IntelliJ IDEA 项目布局,想要通过 Web 应用程序和控制台打破程序集以实现可重用性

java - 什么是加载时编织?

java - 需要澄清引导 Spring Boot 应用程序的推荐方法

javascript - markerclusterer 检查标记是否在簇中

google-maps - 将纬度/经度转换为像素并返回

java - 如何在 Android 应用程序中有效使用 google place API

java - 带有 HttpServletResponse 截断输出的 UTF-8 阿拉伯语