http://tool.sufeinet.com/HttpHelper.aspx?type=url&url=https://gd.ac.10086.cn/ucs/captcha/image/reade.jsps?sds=1465641290141 直接获取就行了,只需要加上一个属性[C#] 纯文本查看 复制代码 HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = "https://gd.ac.10086.cn/ucs/captcha/image/reade.jsps?sds=1465641290141",//URL 必需项
Referer ="https://gd.ac.10086.cn/ucs/captcha/image/reade.jsps?sds=1465641290141",//来源URL 可选项
ResultType = ResultType.Byte,//返回数据类型,是Byte还是String
};
HttpResult result = http.GetHtml(item);
string html = result.Html;
string cookie = result.Cookie;
|