http post 参数本身没有长度限制
首先说下 C#语言实现http post协议传参 调用其他接口失败
在网上查找好多资料 解决办法有:
1.wbe.config 设置httpruntime中Requestlegth最大
2.IIS设置
3.改变ContentType类型
尝试后 还是失败
最终自己写了个接口 传相同的参数
调试发现json传过来的参数 是urlencode的 页面中request.params是获取不到参数的
参数的格式是key=values 然后把post参数 改成key=values格式 再次调用成功
ContentType为application/x-www-form-urlencoded成功
ContentType为 request.ContentType = “multipart/form-data; boundary=” + str2;失败
其中 还有个要点:参数的values值要urlencode 不是整个参数都urlencode
public string Verify()
{
try
{
string str1 = "sdfjshdfljshdf";
str1 = System.Web.HttpUtility.UrlEncode(str1);
string str = "key1=" + str1;
string url = "http://localhost:2814/Test.aspx";
byte[] byteArray = Encoding.UTF8.GetBytes(str); // 转化
HttpWebRequest webRequest2 = (