我需要对地址进行地理编码,从城市获取纬度,经度,邮政编码等。
当我在Android上使用此请求时 https://maps.googleapis.com/maps/api/geocode/json?address=Aachen-Horbach+Gzg®ion=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("®ion="+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();
}
}
答案 0 :(得分:0)
这是一个想法:检查logcat的输出。
如果请求时间和从谷歌发回数据的时间过于接近,Google可能会认为您是垃圾邮件发送者,并在第二次请求时拒绝访问服务器。
这种情况下的解决方案是等待1秒,如果有next_page_token,则发送后续请求。