标签:ref htm 应用 auth cell 技术 redirect client cli
1、当你是使用微博官方移动SDK的移动应用时,授权返回access_token的同时,还会多返回一个refresh_token:
1
2
3
4
5
6
|
{ "access_token" : "SlAV32hkKG" , "remind_in" : 3600, "expires_in" : 3600 "refresh_token" : "QXBK19xm62" } |
2、当你调用API接口返回 Access Token 过期时,你可以调用 oauth2/access_token 并传入 refresh_token:
返回值
1
2
3
4
|
{ "access_token" : "SlAV32hkKG" , "expires_in" : 3600 } |
3、使用新获得的Access Token调用API
OAuth2.0学习(5-3)新浪开放平台-微博API-移动应用的授权
标签:ref htm 应用 auth cell 技术 redirect client cli
原文地址:http://www.cnblogs.com/lexiaofei/p/7029340.html