我正在尝试使用Google Places Api创建示例应用。我之前从未使用过这个api,所以我想尝试一下:)。
我做的第一件事就是为Android启用Google Places Api,并使用cmd中的keytool命令从Google Console api创建Android密钥(我使用的是Windows 8.1)。然后我将我的API_KEY添加到以下链接中作为..
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=-33.8670522,151.1957362&radius=500&types=food&name=cruise&key=AIzaSyC8aJYaI9djrUoEMaMIa3sRF36buKPSV0M
我得到的json响应就是这个。
{
"error_message" : "This API project is not authorized to use this API. Please ensure that this API is activated in the APIs Console: Learn more: https://code.google.com/apis/console",
"html_attributions" : [],
"results" : [],
"status" : "REQUEST_DENIED"
}
为什么我的申请被拒绝?
由于