我很難從Google Places API獲得有效的自動填充回覆。我正在使用基於[他們的示例}(https://developers.google.com/places/training/autocomplete-android)(其中,有趣的是使用seemingly invalid country code of "uk")的代碼。Google Places API自動填充 - REQUEST_DENIED
我在Google代碼控制檯中啓用了Places API。 幾個星期前我第一次啓用Maps API時生成了我的API密鑰,而且我正在使用的MapFragment工作正常,所以我沒有理由懷疑API密鑰無效。
我使用的URL是https://maps.googleapis.com/maps/api/place/autocomplete/json?input=New+York&sensor=false&key=my_valid_api_key&components=country:us
我總是{"status":"REQUEST_DENIED","predictions":[]}
爲我的迴應。
我已多次驗證我的網址已正確形成並符合Places API autocomplete endpoint的要求,但我沒有收到我期待的回覆。
我已經看到了一些關於如何解決這個問題的建議,以及如何解決這個問題,但他們都沒有爲我工作(即 - 使用http而不是https,使用端口443等)我試過這些所有合理的組合,沒有變化的反應。
請幫我看看我做錯了什麼。
可能的複製問題http://stackoverflow.com/questions/14654758/google-位置-api-request-denied-for-android-autocomplete-even-the-the-right-a –