get-token.md 1.3 KB

1.1 获取访问令牌 (客户端模式)

  • 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"
  }