新浪微博授权发布 WebView Android

Web应用登录步骤(http://open.weibo.com/wiki/Oauth2):

1、在http://open.weibo.com/注册一个应用,然后编辑“应用信息”-->“高级信息”的“OAuth2.0授权设置”,设置授权回调页面;

2、修改黄色区域的值,并用WebView进行加载;

“https://api.weibo.com/oauth2/authorize?client_id=YOUR_CLIENT_ID&response_type=code&redirect_uri=YOUR_REGISTERED_REDIRECT_URI

3、在WebViewClient的onPageStarted方法中,截取网页跳转,获取code内容;

4、同样修改黄色区域的内容,以获得ACCESS_TOKEN的值;

https://api.weibo.com/oauth2/access_token?client_id=YOUR_CLIENT_ID&client_secret=YOUR_CLIENT_SECRET&grant_type=authorization_code&redirect_uri=YOUR_REGISTERED_REDIRECT_URI&code=CODE

效果如下:

新浪微博授权发布 WebView Android_第1张图片

 

新浪微博授权发布 WebView Android_第2张图片

源代码下载:SinaWeibo.rar

你可能感兴趣的:(android)