|
5金钱
使用的工具是站長的類: HttpHelper 。
其中 ResultCookieType 我修改為用 :CookieContainer 。
也就是說我沒有處理過Cookie,都是CookieContainer 自動處理的。登陸成功后其他不是有關搶購驗證碼的操作都能成功。
就是請求搶購驗證碼時沒有驗證碼圖片出現,
result.StatusCode=OK 返回的內容是:getmode({"Q":"","D":""})
是不是還需要操作Cookie之類的東西,麻煩各位提供點思路,讓我繼續往下做。謝謝!
我操作的步奏是。
1.登陸成功,
2.成功獲取到驗證碼地址,搶購排隊地址
3.請求驗證碼,提交排隊.
--
請求驗證碼的代碼如下:
item.URL = "http://tp.hd.mi.com/getmode/cn/?product=2143400001&_=1418101034435";
item.Method = "get";
item.ContentType = "image/jpeg";
item.Host = "tp.hd.mi.com";
item.Referer = "http://s1.mi.com/open/8D896A2CC125B8C3DC25862084EA387C/choosePhone.html?_20141209";
item.ResultType = ResultType.Byte;
result = http.GetHtml(item); |
|