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"
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"
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.