android – 自动填充Google商家信息示例
作者:互联网
我正在尝试运行Google Place代码示例,但我无法执行此操作.
我收到错误消息,如:
Error getting autocomplete prediction API call: Status{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
解决方法:
如果您未在Google Developer Console中启用Places API for Android,则会导致此错误(这与常规Places API不同).
如果您在将谷歌元数据添加到应用程序清单时使用旧的“地图”标识符而不是com.google.android.geo.API_KEY设置API密钥,也会导致此问题.
标签:android,google-places-api,autocomplete 来源: https://codeday.me/bug/20190829/1764696.html