Special characters are encoded in POST request in android. How to avoid this?

让人想犯罪 __ 提交于 2021-01-07 02:42:08

问题


I am calling a post API with some parameters. one the parameters is

activatecode="aaaaaa$rr"

when the API call is made, it is sent as

activatecode=aaaaaa%24rr

The $ is encoded as %24. How to avoid this and send the special character as it is?

来源:https://stackoverflow.com/questions/65409306/special-characters-are-encoded-in-post-request-in-android-how-to-avoid-this

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!