我这个项目的目标是轮询谷歌方向API,并在Android应用程序的MapView上通过折线绘制路线。
但是,当我从 API 调用中获取DirectionsResult
时,尝试访问directionsResult.routes[0]
或directionsResult.geocodedWaypoints[0]
会导致 NullPointerException。
我目前正在使用 maven 存储库导入以下库(摘自我的 build.gradle(:
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.http-client:google-http-client-android:1.21.0'
compile 'com.google.http-client:google-http-client-jackson:1.21.0'
compile 'com.google.http-client:google-http-client-jackson2:1.21.0'
compile 'com.google.http-client:google-http-client-gson:1.21.0'
compile 'com.google.http-client:google-http-client-protobuf:1.21.0'
compile 'com.google.http-client:google-http-client:1.21.0'
compile 'com.google.maps:google-maps-services:0.1.10'
compile 'com.google.android.gms:play-services:8.4.0'
我在带有调试调用的 AsyncTask 实现中的当前代码被注释掉:
@Override
protected synchronized String doInBackground(URL... params)
{
try {
HttpRequestFactory requestFactory = HTTP_TRANSPORT.createRequestFactory(new HttpRequestInitializer() {
@Override
public void initialize(HttpRequest request) throws IOException {
request.setParser(new JsonObjectParser(JSON_FACTORY));
}
});
GenericUrl url = new GenericUrl("http://maps.googleapis.com/maps/api/directions/json");
// to and from are both LatLng's
url.put("origin", from.toUrlValue());
url.put("destination", to.toUrlValue());
url.put("sensor", true);
HttpRequest request = requestFactory.buildGetRequest(url);
//wait(1000);
HttpResponse httpResponse = request.execute();
//Log.i(TAG, httpResponse.parseAsString());
//wait(1000);
DirectionsResult directionsResult = httpResponse.parseAs(DirectionsResult.class);
//wait(1000);
//Log.i(TAG, Integer.toString(httpResponse.getStatusCode()));
//Log.i(TAG, httpResponse.getStatusMessage());
latlngs = directionsResult.routes[0].overviewPolyline.decodePath();
} catch (IOException ioe) {
ioe.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
我的调试过程:
这是我打印的请求网址:
http://maps.googleapis.com/maps/api/directions/json?origin=40.426870,-86.925083&destination=40.430092,-86.921679&sensor=true
显然,这是一个简短但完整的电话。使用包含折线点的腿元素(这就是我假设我所追求的(。这个 JSON 与我从阅读 httpResponse.parseAsString()
中获得的响应相同。
查看一些StackExchange问题,我看到有人建议等待接收数据。我在请求周期的所有组成部分之间放置了 1 秒的延迟,但没有结果。
调用的其他部分均不为空。
httpResponse.getStatusCode()
返回了 200。httpResponse.getStatusMessage()
返回还好。
一切看起来都很正常,直到我尝试使用 DirectionsResult
来解析 JSON HttpResponse
:
DirectionsResult directionsResult = HttpResponse.parseAs(DirectionsResult.class);
之后,我在访问DirectionsResult
的两个字段时得到一个 NullPointerException:routes
和 geocodedWaypoints
。
没有人对这门课有类似的问题?我一直在想,如果这里没有解决这个问题,我可能会在正确的 google-http-client 库 GitHub 页面上提交一个问题。
所以事实证明,有两件事我没有做对。
首先,我在URL中没有包含API密钥,这并不能解释为什么我能够打印出格式正确的JSON响应httpRequest.parseAsString()
,但无论如何,显然需要包含API密钥才能正确计费我的Google开发人员帐户。因此需要进行的另一个更改是将URL从"http"更改为"https"。
其次,请求Android API密钥而不是服务器API密钥似乎存在问题。我在使用安卓 API 密钥时收到了以下响应:
{
"error_message" : "This IP, site or mobile application is not authorized to use this API key. Request received from IP address 128.210.106.49, with empty referer",
"routes" : [],
"status" : "REQUEST_DENIED"
}
作为解决方案,在创建 API 密钥时,请选择"服务器"选项而不是 Android。