Google Map API 通过纬度和经度显示附近地点

问题描述 投票:0回答:2

我有一个 Api 密钥、Api 控制台和 Sh1,并使用 EclipseIDE ANDROID -> 首选项,我 添加Api中的所有数据如下:

https://maps.googleapis.com/maps/api/place/radarsearch/json?location=48.859294,2.347589&radius=5000&types=food|cafe&sensor=false&keyword=vegetarian&key=AIzaSyCRQ2aFtbU2sOgO6fMvuM2edHPaWRDxbRg

但是我收到此错误消息:

{
   "error_message" : "This IP, site or mobile application is not authorized to use this API key.",
   "html_attributions" : [],
   "results" : [],
   "status" : "REQUEST_DENIED"
}

我做错了什么?

android json google-maps
2个回答
1
投票

我请求您使用以下API

https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=48.859294,2.347589&radius=500&types=school&sensor=false&key=my-key


0
投票

所以我遇到了与您相同的问题,我使用了与您相同的API,但是我发现如果您为Android生成一个新的API密钥,它不起作用,但是如果您生成一个新的服务器密钥并使用它工作完美。我在以下帖子中找到了一些帮助 REQUEST_DENIED 使用 Google Places API 浏览器密钥或应用程序密钥?

© www.soinside.com 2019 - 2024. All rights reserved.