0
votes

The url http://maps.googleapis.com/maps/api/geocode/json?address=Pune&sensor=false/true works fine on desktop browser but when I am calling same from android native app it's giving me Request Denied error.

Any gueses?

1

1 Answers

0
votes

That's because you are trying like this :

http://maps.googleapis.com/maps/api/geocode/json?address=pune&sensor=false/true

Try to this:

http://maps.googleapis.com/maps/api/geocode/json?address=pune&sensor=false

And make sensor value true or false according to your requirement.

And result that I got is here.