CoderGeek
2017-12-21 13:13:02 +08:00
申请 access_token POST /oauth2/token
名称 描述 类型 可为空
scope 申请的权限范围,可选项 默认为 basic String Y
client_secret 第三方用户唯一凭证密钥,即 app_secret String N
client_id 第三方用户唯一凭证,即 app_id String N
grant_type 获取 access_token 填写 client_credential String N
返回格式: { "access_token": "948ad78157cf1b96a147b83b589c5d9a", "refresh_token": "91671e25b0bf077108fce003de322f56", "success": true, "token_type": "bearer", "expires_in": 3050 }
参数说明 名称 描述
access_token 获取到的令牌
refresh_token 更新令牌
expires_in access_token 有效时间 单位 秒
token_type 默认返回
更新 access_token POST /oauth2/token
名称 描述 类型 可为空
grant_type 获取 access_token 填写 refresh_token String N
scope 申请的权限范围,可选项 默认为 basic String Y
refresh_token 更新令牌 String N
返回格式: { "access_token": "948ad78157cf1b96a147b83b589c5d9a", "refresh_token": "91671e25b0bf077108fce003de322f56", "success": true, "token_type": "bearer", "expires_in": 3050 }
参数说明 名称 描述
access_token 获取到的凭证 refresh_token 刷新凭证
expires_in access_token 有效时间 单位 秒
token_type 默认返回