URL:
@#$/uc/oauth/token
METHOD: POST
Header参数
| 参数key | 参数值 | 参数描述 | | ------------- | --------------------------------- | -------------------------------- | | Content-Type | application/x-www-form-urlencoded | | | Authorization | Basic [base64] | clientId+clientSecret base64转换 |
| 参数名 | 是否必填 | 参数值 | 参数描述 | | ---------- | -------- | ------------------ | -------- | | grant_type | 是 | client_credentials | 授权类型 | | scope | 否 | | 授权范围 |
| 名称 | 类型 | 说明 | | ------------ | ------ | -------------------- | | access_token | String | 访问token | | expires_in | Long | 过期时间,单位为秒 | | scope | String | 授权范围(暂不使用) | | token_type | String | 值为:bearer |
{
"access_token": "36cded80-b6f5-43b7-bdfc-594788a24530",
"token_type": "bearer",
"expires_in": 31535996,
"scope": "all"
}