Submitted by markhard on Wed, 07/30/2014 - 08:02
since remote API call separate the variables with '&' character for example:
host/server-manager/remote.cgi?program=create-owner&name=user&pass=word
what happen if a user have the character '&' in his password? what should i do to escape the '&' character?
Status:
Closed (works as designed)
Comments
Submitted by JamieCameron on Wed, 07/30/2014 - 20:28 Comment #1
You need to use URL encoding of characters - so an ampersand is replaced by %26
See http://www.w3schools.com/tags/ref_urlencode.asp