I'm working on nodejs api where I need to pass username and password in post request url at params with axios package, for example: http://someUrl:5000/oauth/token?client_id=clusterName&username=johndoe&password=password
I have an issue when i'm passing password with # at the beggining, what i'm getting is: http://someUrl:5000/oauth/token?client_id=clusterName&username=johndoe&password=
the url sliced after the # character , when i'm passing # in middle of the password all works fine, thanks for your help