我正在尝试运行Google Place代码示例,但我无法执行此操作。
我收到错误消息,如:
获取自动填充预测API调用时出错:状态{statusCode = TIMEOUT,resolution = null}
我将Google Map V2 ApiKey添加到Manifest,并使用正确的证书对应用程序进行了签名,因此密钥可能就在这里:
mGoogleApiClient = new GoogleApiClient.Builder(this)
.enableAutoManage(this, 0 /* clientId */, this)
.addConnectionCallbacks(this)
.addApi(Places.GEO_DATA_API)
.build();
我不确定clientId
位置应该是什么,并且没有太多信息。只是其他人有同样的问题,但没有解决方案。
顺便说一句,如果有人想看看完整的代码,它就在这里: https://github.com/googlesamples/android-play-places/issues/3
答案 0 :(得分:5)
错误可能是因为您Places API for Android
中未启用Google Developer Console
(这与常规Places API
不同)。
在将谷歌元数据添加到应用程序清单时,如果使用旧的“地图”标识符而不是com.google.android.geo.API_KEY
设置API密钥,也会导致此错误。