Android:Google API v.3提供了INVALID_REQUEST,但在浏览器中执行得很好

时间:2015-05-13 08:33:18

标签: java android google-maps google-maps-api-3

我需要对地址进行地理编码,从城市获取纬度,经度,邮政编码等。

当我在Android上使用此请求时 https://maps.googleapis.com/maps/api/geocode/json?address=Aachen-Horbach+Gzg&region=DEU&sensor=false

我收到INVALID_REQUEST作为回复。但是当我在浏览器中或在REST客户端的帮助下尝试此链接时,一切正常。

与此请求相同:

https://maps.googleapis.com/maps/api/geocode/json?address=Abertamy - 的Horni +布拉特纳&安培;区域= CZE&安培;传感器=假

可能是什么原因?

创建网址:

     StringBuilder addressUrl  = new StringBuilder();
                    if (order.getDepartureAddress().getStreet()!=null && !order.getDepartureAddress().getStreet().equalsIgnoreCase(""))
                        addressUrl.append(order.getDepartureAddress().getStreet() + ", ");
                    if (order.getDepartureAddress().getHouseNumber()!=null && ! order.getDepartureAddress().getHouseNumber().equalsIgnoreCase(""))
                        addressUrl.append(order.getDepartureAddress().getHouseNumber() + ", ");
                    if (order.getDepartureAddress().getCity()!=null && !order.getDepartureAddress().getCity().equalsIgnoreCase(""))
                        addressUrl.append(order.getDepartureAddress().getCity() );
                    if (order.getDepartureAddress().getCountryCode()!=null && !order.getDepartureAddress().getCountryCode().equalsIgnoreCase(""))
                        addressUrl.append("&region="+order.getDepartureAddress().getCountryCode() );
                    addressUrl.append("&sensor=false");
/* 
Constants.URL_GEOCODING = https://maps.googleapis.com/maps/api/geocode/json?address=    
*/
String finalUrl = Constants.URL_GEOCODING + addressUrl.toString();

/* request execution : */


    public static JSONObject readJsonFromUrl(String urlStr) throws IOException, JSONException {
            URL url = new URL(urlStr);
            URI uri = null;
            URI uri2= null;
            try {
                uri = new URI(url.getProtocol(), url.getUserInfo(), url.getHost(), url.getPort(), url.getPath(), url.getQuery(), url.getRef());
                url = uri.toURL();
                uri2 = new URI(url.toString().replace("%20", "+"));
            } catch (URISyntaxException e) {
                e.printStackTrace();
            }
            url = uri2.toURL();
            Log.i(TAG + " requested url", url.toString());
            InputStream is = url.openStream();
            try {
                BufferedReader rd = new BufferedReader(new InputStreamReader(is, Charset.forName("UTF-8")));
                String jsonText = readAll(rd);
                JSONObject json = new JSONObject(jsonText);
                return json;
            } finally {
                is.close();
            }
        }

1 个答案:

答案 0 :(得分:0)

这是一个想法:检查logcat的输出。

如果请求时间和从谷歌发回数据的时间过于接近,Google可能会认为您是垃圾邮件发送者,并在第二次请求时拒绝访问服务器。

这种情况下的解决方案是等待1秒,如果有next_page_token,则发送后续请求。