OAuth2/access token

跳转到: 导航, 搜索
第44行: 第44行:
 
|}
 
|}
  
 
;'''grant_type为refresh_token时'''
 
{| border="1" cellspacing="0" cellpadding="0" width="100%" class="parameters" style="border-color: #CCCCCC;"
 
|-
 
!width="15%" style="text-align:center;font-weight:bolder;border:1px solid #cccccc"| 
 
!width="5%" style="text-align:center;font-weight:bolder;border:1px solid #cccccc"|必选
 
!width="10%" style="text-align:center;font-weight:bolder;border:1px solid #cccccc"|类型及范围
 
!width="70%" style="text-align:center;font-weight:bolder;border:1px solid #cccccc"|说明
 
{{api_args|refresh_token|true|string|获取到的刷新token。}}
 
|}
 
  
 
==返回数据==
 
==返回数据==
第60行: 第50行:
 
       "access_token": "ACCESS_TOKEN",
 
       "access_token": "ACCESS_TOKEN",
 
       "expires_in": 1234,
 
       "expires_in": 1234,
       "refresh_token": "REFRESH_TOKEN"
+
       "remind_in":"798114",
 +
      "uid":"12341234"
 
  }
 
  }
 
</pre>
 
</pre>

2012年3月29日 (四) 18:14的版本

oauth2/access_token

OAuth2的access_token接口

URL

https://api.weibo.com/oauth2/access_token

HTTP请求方式

POST

请求参数

  必选 类型及范围 说明
client_id true string 申请应用时分配的AppKey。
client_secret true string 申请应用时分配的AppSecret。
grant_type true string 请求的类型,可以为authorization_code、password、refresh_token。


grant_type为authorization_code时
  必选 类型及范围 说明
code true string 调用authorize获得的code值。
redirect_uri true string 回调地址,需需与注册应用里的回调地址一致。


grant_type为password时
  必选 类型及范围 说明
username true string 授权用户的用户名。
password true string 授权用户的密码。


返回数据

 {
       "access_token": "ACCESS_TOKEN",
       "expires_in": 1234,
       "remind_in":"798114",
       "uid":"12341234"
 }