# 获取 tenant_access_token(企业自建应用)
企业自建应用通过此接口获取 tenant_access_token,调用接口获取企业资源时,需要使用 tenant_access_token 作为授权凭证。
token 有效期为 2 小时,在此期间调用该接口 token 不会改变。当 token 有效期小于 30 分的时候,再次请求获取 token 的时候,会生成一个新的 token,与此同时老的 token 依然有效。
注意事项:
- 获取token之前 需要在[版本管理与发布]内执行一次应用版本发布,且需要审核通过
# 请求
基本 | |
---|---|
HTTP URL | https://hi-qa.weizhipin.com/open-apis/auth/tenant_access_token/internal |
HTTP Method | POST |
支持的应用类型 | 仅自建应用 |
权限要求 | 无 |
# 请求头
名称 | 类型 | 必填 | 描述 |
---|---|---|---|
Content-Type | string | 是 | 固定值:"application/json; charset=utf-8" |
# 请求体
名称 | 类型 | 必填 | 描述 |
---|---|---|---|
app_id | string | 是 | 应用唯一标识,创建应用后获得 示例值:"cli_slkdjalasdkjasd" |
app_secret | string | 是 | 应用秘钥,创建应用后获得 示例值:"dskLLdkasdjlasdKK" |
# 请求体示例
{
"app_id": "bli_slkdjalasdkjasd",
"app_secret": "dskLLdkasdjlasdKK"
}
1
2
3
4
2
3
4
# 响应
# 响应体
名称 | 类型 | 描述 |
---|---|---|
code | int | 错误码,非 0 表示失败 |
msg | string | 错误描述 |
tenant_access_token | string | 访问 token |
expire | int | token 过期时间,单位: 秒 |
# 响应体示例
{
"code": 0,
"traceId": "_Ao59UOIBLPCeAAu",
"success": true,
"msg": "操作成功",
"data": {
"tenant_access_token": "t-caecc734c2e3328a62489fe0648c4b98779515d3",
"expire": 7140
}
}
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10