Reputation: 1217
I am performing the following geocode api call in a google script function, the address is a residential address (not a business address), it is a valid address when searched in google maps.
Objective: Geocode residential address: 64 Stopford Road, HOVE 5048
Problem: The query below results in a "status" : "ZERO_RESULTS" response
https://maps.googleapis.com/maps/api/geocode/json?address=64StopfordRoadHOVE5048&key=API_KEY
response:
"status" : "ZERO_RESULTS"
Upvotes: 1
Views: 1671
Reputation: 27390
Try this:
https://maps.googleapis.com/maps/api/geocode/json?address=64+Stopford+Road+HOVE+5048&key=API_KEY
Please have a look at the official documentation.
Upvotes: 2