Requests Using Next Page Broken
Opened this issue · 0 comments
okwilkins commented
Currently when requesting a new call using the next_page_token fails due to the API returning an INVALID_REQUEST response. The is because within the location query, instead of a comma, "%2C" is used. If you replace this with a comma, the API returns data back perfectly fine.
I.e.
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=38.82586149999999%2C-76.9195916
Should be:
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=38.82586149999999,76.9195916