其他分享
首页 > 其他分享> > Android Google Maps Direction Api – Api密钥限制不起作用

Android Google Maps Direction Api – Api密钥限制不起作用

作者:互联网

enter image description here

当我们为Google Maps Direction Api设置Key限制为NONE时,它运行正常.

但是当我们为Android应用设置密钥限制并提供正确的套餐名称和SHA-1证书 – 它表示请求已从Google Api响应中拒绝.

任何已知的解决方案?

解决方法:

Directions API是一项Web服务.与Web服务的API密钥一起使用的限制是IP限制.

假设Web服务请求在您的后端服务器上执行.如果需要限制API密钥,则解决方法是创建中间服务器.您的Android应用程序应该向中间服务器发送请求,中间服务器应该向Google发送请求并将响应传递回您的应用程序.在这种情况下,您可以通过中间服务器的IP地址限制API密钥.

看看这个文件:

https://developers.google.com/maps/faq#using-google-maps-apis

希望这能澄清你的怀疑.

标签:google-maps-api-2,android,google-maps,google-maps-android-api-2,google-maps-dire
来源: https://codeday.me/bug/20190929/1832551.html