接口描述
校验 client_id、client_secret,校验成功后返回授权令牌。
请求方法
POST
请求地址
/auth/oauth2/token
请求参数
返回参数
参数 | 参数位置 | 类型 | 描述 |
access_token | Body | String | access_token |
expires_in | Body | Long | access_token 有效时间,与创建应用时设置的“access_token有效期”一致 |
refresh_token | Body | String | 固定为空,该模式不提供 refresh_token |
返回方式
重定向
接口示例
输入示例
https://<auth_domain>/auth/oauth2/token?client_id=ODQyNGJlYmFjYWF****4YjkwNjU4MzMxOThkMGU&grant_type=client_credentials&client_secret=oG412Uk6EdbfXtgUW****1j%256
返回示例
{"access_token": "c6a40b185c8e3****d0f59509b541","expires_in": 7200,"refresh_token": "6865e92a99225****1e4562e26c82"}