When URL contains a special character like « é », Integromat returns a 400 Bad Request. The URL is valid though.
The norm now says that those characters should be displayed as is but encoded in the stream. It’s what all my browsers are doing. And typeform is sending me URLs formatted this way too so I had to splt my URL along '/' to escape it using encodeURI().
Hope this can be fixed.
-------------------------------------------
SOLUTION:
URL can contain only URI characters (US-ASCII). Therefore, the percent-encoding aka URL encoding was implemented.
In order to send characters not available in the URI list of characters, you need to use the encodeURL() function.
Created by Tereza Klobouckova
·