导读: 仅供使用httpclient库模拟http请求,Post请求头
Content-Type: application/x-www-form-urlencoded 遇到 非字母或数字的字符 时转义的问题
直接上code:https://github.com/dswyzx/forblogs
及结果截图
及结果截图
1:问题:因对接接口,参数内存在字符"+",导致双方对参数进行确认时发生分歧
具体表现为:"+"字符在httpclient 为HttpRequestMessage 请求体封装HttpRequestMessage.Content时,全部参数默认被打包为byte数组,并没有像浏览器默认操作一样事先对参数进行encoding操作
"数据被编码成以'&'
分隔的键-值对, 同时以'='
分隔键和值. 非字母或数字的字符会被 percent-encoding" 援引:https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Methods/POST
2:发起请求:
HttpUtility.UrlEncode(string str)
使用 urlencode方法,对请求体的body内存在需要转义字符时提前进行转义.比如"+"转义为"%2b"," "转义为"+"或"%20" 援引 https://developer.mozilla.org/zh-CN/docs/Glossary/percent-encoding
然后再拼接为字符串以提供给StringContent所需的content参数.
3:接收参数
本实验使用.NET Framework 4.5 默认生成的MVC框架模拟接受Form请求参数.
另附curl仅供参考
curl --location --request POST 'https://localhost:44343/home/GetUserInfo' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data-urlencode 'k=1%2b1'
4:结束语
整日搬砖,却对方法体不求甚解.借此记录,以供参考