获取oauth access_token
基于授权码或基于refresh_token获取oauth access_token
Header Parameters
- Content-Type required
application/json
- application/json
Request Body
- client_id string
应用客户端Id
- client_secret string
应用客户端密钥
- code string
oauth授权码(使用授权码获取token时非空)
- grant_type string
grant_type 取值:refresh_token(使用refresh_token刷新token时必传)
- refresh_token string
refresh_token(使用refresh_token刷新token时必传)
Responses
- 200
- 403
- 404
- responseBody
创建token成功
禁止访问
资源未找到
- application/json
- Schema
Schema
- access_token string
access_token。
- expires_in long
access_token过期时间(时间戳:ms)
- refresh_token string
refresh_token
- refresh_token_expires_in long
refresh_token过期时间(时间戳:ms)
Loading...