I'm trying to make a GET
request in Postman
where one of my header parameters has an UTF-8
encoded character like so:
Headers
key: Location Value: Jcareí
All the requests that I made with this header end up giving me a 400 - Bad Request
.
If I just remove the í
character everything works just fine.
I've already tried to set the Content-type
to application/json;charset=UTF-8
and disabling the Accept-Encoding
as suggested here, but none of these seems to work.
What am I missing here?