oauth2.0登录接口设计
Request
字段 | 描述 | 示例 |
---|---|---|
code | 钉钉微信授权的code | - |
Response
字段 | 描述 | 类型 |
---|---|---|
access_token | 授权token | String |
token_type | 类型 | String |
refresh_token | 刷新token | String |
expires_in | token过期时间 | int(秒) |
scope | - | - |
例如
{
"access_token": "6768c8d4-97c3-4fca-a3bb-4adb79291453",
"token_type": "bearer",
"refresh_token": "c431cb99-8d0c-41e3-9b65-8a75b38471bc",
"expires_in": 86399,
"scope": "default"
}