facing a weird issue while sending ÷ (division) in request header.
i have a login API which accepts emailId and password. I created a password Abc!23÷
. Whenever i am trying to login to my application from web i could able to login but when trying to invoke same login API from postman client with empty body {}
what i am seeing is above password got changed to Abc!23÷
. Because of that my login call is failing. Is postman encoding this ÷ divisional char.I couldn't able to figure out what is going on. Someone could help me here. I am using postman Version 7.33.1 on a mac laptop.
curl --location --request POST 'http://localhost:8080/ABCD/session/login' \
--header 'Content-Type: application/json' \
--header 'loginId: Team.Z+9@abc.com' \
--header 'password: Abc!23÷' \
--header 'orgId: abcd' \
--data-raw '{}'