- 积分
- 40165
- 好友
- 记录
- 主题
- 帖子
- 听众
- 收听
|
发表于 2012-12-26 18:11:02
|
显示全部楼层
wonui 发表于 2012-12-26 17:41
https://account.xiaomi.com/pass/serviceLogin
有人遇到过吗
[code=csharp] HttpItem httpItem = new HttpItem();
httpItem.URL = "https://account.xiaomi.com/pass/serviceLoginAuth";
httpItem.Method = "POST";
httpItem.Encoding = "utf-8";
httpItem.Allowautoredirect = true;
httpItem.ContentType = "application/x-www-form-urlencoded";
httpItem.Referer = "https://account.xiaomi.com/pass/serviceLoginAuth";
httpItem.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";
httpItem.Postdata = "passToken=&user=用户名&pwd=密码&callback=https%3A%2F%2Faccount.xiaomi.com&sid=passport&hidden=";
HttpHelper http = new HttpHelper();
string ddd = http.GetHtml(httpItem);
httpItem = new HttpItem() { URL = "http://account.xiaomi.com/pass/userInfo?userId=29416332", Cookie = httpItem.Cookie };
ddd = http.GetHtml(httpItem);[/code]
有以后前的,不过现在好像不行了,你再研究一下吧 |
|