Hi Guys,
I'm pretty sure this isn't possible.
I'm working on an API and for our remote user registration function (passed via http), the password the user wants needs to be included. We don't keep the password, we hash them. And this will all be sent over https so that the passwords are encrypted and not sent via clear text.
I WANT users to user cryptic passwords, so we welcome passwords with special characters including those that would break a URL. I'm ok with having to accept that if a password with special characters is sent, it needs to be encoded for URL format (and decoded at the server), but I was curious if there is a way around it.
Example:
https://company.com/myfunction.cfc?createUser&userName=myUser&email=johndoe@outlook.com@password=wysiwyg$#@!&*
I'm pretty sure this isn't possible.
I'm working on an API and for our remote user registration function (passed via http), the password the user wants needs to be included. We don't keep the password, we hash them. And this will all be sent over https so that the passwords are encrypted and not sent via clear text.
I WANT users to user cryptic passwords, so we welcome passwords with special characters including those that would break a URL. I'm ok with having to accept that if a password with special characters is sent, it needs to be encoded for URL format (and decoded at the server), but I was curious if there is a way around it.
Example:
https://company.com/myfunction.cfc?createUser&userName=myUser&email=johndoe@outlook.com@password=wysiwyg$#@!&*