api - Traversing a post request in rails -


i working on ruby on rails. sending post request key value pairs.

in post request have key username = "name" , password= "password&123"

when send post request request handling in different way. splits password has & (ampersand ) in it, splits username="name", password= "password", 123=""

how avoid this.


Comments