# 获取授权账号调用令牌
接口应在服务器端调用,详细说明参见服务端API。
# 接口说明
# 接口英文名
getAuthorizerAccessToken
# 功能描述
该接口用于获取授权账号的authorizer_access_token。authorizer_access_token 有效期为 2 小时,authorizer_access_token 失效时,可以使用 authorizer_refresh_token 获取新的 authorizer_access_token。使用过程中如遇到问题,可在开放平台服务商专区发帖交流。
# 注意事项
- authorizer_access_token 有效期为 2 小时,开发者需要缓存 authorizer_access_token,避免 API 调用触发每日限额。
- 缓存方法可以参考:https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Get_access_token.html
# 调用方式
# HTTPS 调用
POST https://api.weixin.qq.com/cgi-bin/component/api_authorizer_token?component_access_token=ACCESS_TOKEN
# 请求参数
属性 | 类型 | 必填 | 说明 |
---|---|---|---|
component_access_token | string | 是 | 第三方平台接口调用凭证component_access_token,该参数为 URL 参数,非 Body 参数。 |
component_appid | string | 是 | 第三方平台 appid |
authorizer_appid | string | 是 | 授权方 appid |
authorizer_refresh_token | string | 是 | 刷新令牌,获取授权信息时得到 |
# 返回参数
属性 | 类型 | 说明 |
---|---|---|
authorizer_access_token | string | 授权方令牌 |
expires_in | number | 有效期,单位:秒 |
authorizer_refresh_token | string | 刷新令牌 |
# 调用示例
示例说明: HTTPS请求
# 请求数据示例
{
"component_appid": "appid_value",
"authorizer_appid": "auth_appid_value",
"authorizer_refresh_token": "refresh_token_value"
}
# 返回数据示例
{
"authorizer_access_token": "some-access-token",
"expires_in": 7200,
"authorizer_refresh_token": "refresh_token_value"
}
# 错误码
错误码 | 错误码取值 | 解决方案 |
---|---|---|
-1 | system error | 系统繁忙,此时请开发者稍候再试 |
40001 | invalid credential access_token isinvalid or not latest | 获取 access_token 时 AppSecret 错误,或者 access_token 无效。请开发者认真比对 AppSecret 的正确性,或查看是否正在为恰当的公众号调用接口 |
40013 | invalid appid | 不合法的 AppID ,请开发者检查 AppID 的正确性,避免异常字符,注意大小写 |
0 | ok | ok |