Skip to content
Advertisement

Unescaped Characters when using languages other than English in Node JS?

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

When I try my request directly in a web browser it works fine:

JavaScript

But when I try the exact same string in NodeJS I get the error above, here is my code (I tried unescape):

JavaScript

Advertisement

Answer

Try to encode the url before performing the actual request.

JavaScript
Advertisement