Google maps v2 is returning "INVALID_REQUEST"

0

I'm trying to use the Google Places API, and I'm getting INVALID_REQUEST when trying to access it.

This is the url I'm using:

  

link "KEY_API"

    
asked by anonymous 01.07.2015 / 20:32

1 answer

1

According to the encode string in HTML , %22 means, decrypted, " . That is, your URL is being interpreted as:

  

link , "- 73.9852992 & radius = 100 & sensor = true & "KEY_API"

Notice that a " was added before its length -73.9852992 in your URL.

To resolve this, remove %22 from your URL so that the " character is removed.

    
02.07.2015 / 15:18