I am using a Google cloud function with the Google Places API. It works fine in English, but I get this error when inputting Hebrew or Russian:
JavaScript
x
2
1
Unhandled error TypeError [ERR_UNESCAPED_CHARACTERS]: Request path contains unescaped characters
2
When I try my request directly in a web browser it works fine:
JavaScript
1
2
1
https://maps.googleapis.com/maps/api/place/autocomplete/json?key=myKey&type=address&input=основной
2
But when I try the exact same string in NodeJS I get the error above, here is my code (I tried unescape):
JavaScript
1
5
1
var input = unescape(data.textInput); //string
2
var key = "myKey";
3
var type = "address";
4
var url = "https://maps.googleapis.com/maps/api/place/autocomplete/json?" + "key=" + key + "&type=" + type + "&input=" + input;
5
Advertisement
Answer
Try to encode the url before performing the actual request.
JavaScript
1
3
1
var url = "https://maps.googleapis.com/maps/api/place/autocomplete/json?" + "key=" + key + "&type=" + type + "&input=" + input;
2
var encodedUri = encodeURI(url)
3