新浪微博OAUTH2授权流程

新浪微博OAUTH2授权流程

新浪微博OAUTH2授权流程.

理解OAuth 2.0,推荐阅读:http://www.ruanyifeng.com/blog/2014/05/oauth_2_0.html

一、

访问:https://api.weibo.com/oauth2/authorize?client_id=你的应用APPKEY&response_type=code&redirect_uri=https://api.weibo.com/oauth2/default.html(你的应用回调地址)

返回:https://api.weibo.com/oauth2/default.html?code=a9b216e00394b82fa7c351c1ab051931

二、

访问:https://api.weibo.com/oauth2/access_token?client_id=你的应用APPKEY&client_secret=你的应用APPSECRET&grant_type=authorization_code&redirect_uri=https://api.weibo.com/oauth2/default.html&code=a9b216e00394b82fa7c351c1ab051931

返回:{“access_token”:”2.00VNNvrCjJTHgB789f62d93d0Q8vbn”,”remind_in”:”157679999″,”expires_in”:157679999,”uid”:”2629046977″}

三、

用access_token即可完成更加复杂的获取微博海量数据功能。