获取访问令牌链接
TIP
接口无需遵循总体规范。
接口功能
获取访问令牌和刷新令牌
请求地址
https://open.qly.cmviot.cn/normal/oauth/token请求方式
POST,无需鉴权
请求参数
请求头 Content-Type: application/x-www-form-urlencoded;charset=UTF-8| 参数名称 | 参数类型 | 是否必需 | 参数含义 | 说明 |
|---|---|---|---|---|
| grant_type | String | Y | 授权类型 | 固定值 authorization_code 或 refresh_token |
| client_id | String | Y | 应用 ID | 应开平台上申请应用的 appid |
| client_secret | String | Y | 应用秘钥 | 应开平台上申请应用的 secret |
| code | String | - | 授权码 | 授权码,grant_type 为 authorization_code 时必传 |
| redirect_uri | String | Y | 重定向 uri | 重定向网址,获取 code 时传入的 redirect_uri |
| refresh_token | String | - | 刷新 token | 刷新 access_token, grant_type 为refresh_token必传 |
请求示例
grant_type:authorization_code
client_id:1234434344334
client_secret:sf6e7rr
code:0d8cfdd57e7b68d0563ee4a43becfb89
redirect_uri:https://www.baidu.com/响应参数
| 参数名称 | 参数类型 | 参数含义 | 说明 |
|---|---|---|---|
| access_token | String | 访问令牌 | 有效时间为 2 小时 |
| refresh_token | String | 刷新 token | 用于更新 access_token, 有效时间为 180 天 |
| token_type | String | token 类型 | 固定值:bearer |
| expires_in | int | access_token 的失效时间 | 单位:秒 |
| url | String | 访问连接 | 前端可直接通过此 url 访问移动千里眼。其中参数 token 是临时的,有效期仅有 5 分钟,且仅能使用一次。即返回的url登录成功后立即失效。 |
响应示例
{
"access_token": "xxx",
"refresh_token": "yyy",
"token_type": "bearer",
"expires_in": 7200,
"url": "https://qly.andmu.cn/normal/#/login?token={xxx}"
}