使用代理ip登录没问题,清除购物车出现 “必须先将 ContentLength 字节写入请求流,然后再调用 [Begin]GetResponse。”
如果清除购物车到时候把代理ip设置为“”,又是好的。求解答
[C#] 纯文本查看 复制代码
HttpItem httpItem = shopList[i].HttpItem;
HttpResult httpResult = shopList[i].HttpResult;
httpItem.Method = "post";
httpItem.URL = removeCartUrl;
//httpItem.UserAgent = "MSIE 9.0";
//httpItem.ProxyIp = "";
httpItem.Postdata = string.Format("locationId=1-0-0&outSkus=&random={0}", rd.NextDouble());
httpResult =(new HttpHelper()).GetHtml(httpItem);
string htmltext = httpResult.Html;
|