Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to make an Autocomplete field which should fetch cities as the user types, by using the Google Places API as described in this tutorial: https://developers.google.com/places/training/autocomplete-android

You've probably found this question around many times before as I did, but none of the answers helped me. Here are the things you should know:

The URL is https://maps.googleapis.com/maps/api/place/autocomplete/json?sensor=false&key=myKey&components=country:ro&input=whatTheUserTypes

Please don't reply by saying you replaced the API key with your own and it worked - the API key which goes there must be Android specific and won't work from a browser.

So did I make the Android API key using the SHA1 fingerprint obtained from the keystore I signed the app with. I turned on Maps and Places APIs from the console. The quota isn't exceeded.

All those and it still gives me REQUEST_DENIED

What I didn't mention is that I have O2Auth activated - does that change anything? Shouldn't it be as simple as putting the API key in the app?

Thanks!

share|improve this question

1 Answer

up vote 3 down vote accepted

The Google Places API does not currently support Android or iOS keys generated from the Google APIs Console. Only Server and Browser keys are currently supported.

If you would like to request this support, please file a Places API - Feature Request.

share|improve this answer
Thanks again, that shed a lot of light on this issue Was it mentioned somewhere in the documentation? It says there in the Autocomplete tutorial, that the API key 'should' be stored on a proxy server, but that leaves many of us to think we can just use it directly from the app anyway. – Stefan Feb 7 at 8:41
It isn't mentioned in the Places API documentation, however it is mentioned in the APIs console help: "Note that Android keys are only supported by some APIs". – Chris Green Feb 8 at 4:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.