1
RelativeLayout OP 难道真的没有人用的上么?
|
2
RelativeLayout OP 这次更新还添加了本地的Python认证,跳过了浏览器
|
3
xing393939 2013-02-20 13:23:23 +08:00
不是有验证码的吗
|
4
arzusyume 2013-02-20 13:27:39 +08:00
sina登录如果IP为国外或者user-agant里有奇怪的东西(比如sae)时,需要验证码。。。
|
5
RelativeLayout OP @arzusyume 没有处理验证码诶。过两天处理验证码。
|
6
snnn 2014-05-22 00:18:34 +08:00
Gson gson = new Gson();
java.util.List<NameValuePair> formparams = new java.util.ArrayList<NameValuePair>(); formparams.add(new BasicNameValuePair("client_id", appid)); formparams.add(new BasicNameValuePair("client_secret", appkey)); formparams.add(new BasicNameValuePair("grant_type", "password")); formparams.add(new BasicNameValuePair("username", username)); formparams.add(new BasicNameValuePair("password", password)); org.apache.http.client.fluent.Response httpres = Request.Post("https://api.weibo.com/oauth2/access_token") .bodyForm(formparams).execute(); org.apache.http.HttpResponse resp = httpres.returnResponse(); client_id=140226478 client_secret=42fcc96d3e64d9e248649369d61632a6 |