我有这个代码,我试图从我的 Android 设备调用 Google 方向 API 网络服务:(4.1 HTC 1X)。但是我得到了 REQUEST_DENIED 响应。为什么?
这是我的代码 - 这里没什么特别的:
String hosturl="https://maps.googleapis.com/maps/api/directions/xml?";
String url = "origin=" +lat1 + "," + lon1 + "&destination=" + lat2 + "," + lon2 + "&sensor=true";
String tag[] = { "lat", "lng" };
ArrayList<GeoPoint> list_of_geopoints = new ArrayList<GeoPoint>();
HttpResponse response = null;
try {
HttpClient httpClient = new DefaultHttpClient();
HttpContext localContext = new BasicHttpContext();
String newurl = URLEncoder.encode(url, "UTF-8");
String finalurl = hosturl + newurl;
System.out.println(" Direction request going out:"+ finalurl);
HttpPost httpPost = new HttpPost(finalurl);
try {
response = httpClient.execute(httpPost, localContext);
}
catch (Exception exc) {
System.out.println("IO Exeception in making direction request: "+ exc.getMessage());
//list_of_geopoints=null;
return list_of_geopoints;
}
InputStream in = response.getEntity().getContent();
DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document doc = builder.parse(in);
if (doc != null) {
NodeList nl1, nl2, statusList;
statusList = doc.getElementsByTagName("status");
当我打印状态节点时,我得到一个 REQUEST_DENIED。
我看到其他人也发布了相同的内容,但没有得到任何回应。
我已经有我的 MAP API 的密钥。但是,我没有使用最新的 Google Places API,因为我相信我不需要。我完全一无所知。我正在使用 Android 3.2 制作应用程序,同时在使用 4.1 的 HTC 1x 上运行它。
在浏览器中使用时同样有效。例如,从任何浏览器调用以下内容都可以工作(但不是从我的 android 代码): http ://maps.googleapis.com/maps/api/directions/xml?origin=37.2345487,-121.5840723&destination=37.236064,- 121.961595&传感器=假
我可能正在做一些非常愚蠢的事情,但无法抓住它。