# 获取授权小程序接口调用凭据

更新时间:2023-02-08 11:00:04

该接口用于获取授权小程序接口调用凭据。授权小程序接口调用凭据 authorizer_access_token 是服务商代授权小程序调用第三方平台服务端 API 的必要条件。

注意:

authorizer_access_token 有效期 2 小时。

# 接口说明

请求头 说明
URL https://open.kuaishou.com/mp/tp/oauth/authorizer_access_token
Method GET
Content-Type application/x-www-urlencode-form

# 请求参数

参数 是否必须 类型 备注
component_app_id string 第三方应用 appid
component_access_token string 第三方应用接口调用凭据
authorization_code string 授权码

# 响应

参数 类型 描述
result number 状态码 1-成功 非1-错误码
errorMsg string 错误提示信息,参考常见错误码
authorizerAccessToken string 授权小程序接口调用凭据
expiresIn number authorizer_access_token 的有效期,单位:秒
authorizerRefreshToken string 刷新令牌,用于刷新已授权用户的 authorizer_access_token
refreshExpiresIn number authorizer_refresh_token 的有效期,单位:秒
authorizerAppId string 授权小程序 appid
authorizePermission Array<object> 授权小程序在授权跳转页勾选的权限

示例:

{
  "result":1,
  "errorMsg":"错误提示信息",
  "authorizerAccessToken": "08021218466f6f2b4d672f3658783566365448746a7a325679513d3d",
  "expiresIn": 7200,
  "authorizerRefreshToken": "0740283fdbbc11174807dfcbe9b6b566bc5e7542305b1f0d9cb958eba030488cd1acb22d68a97099843629c77ea21a5cee021a08021218466f6f2b4d672f3658783566365448746a7a3256795133",
  "refreshExpiresIn": 2592000,
  "authorizerAppId": "ks345x7687xx",
  "authorizePermission": [
        {
            "id": 1,
            "category": "开发管理权限",
            "description": "帮助小程序进行功能开发和开发设置"
        },
        ......
    ]
}

# 错误码

参考常见错误码

# 目前小程序可授予的权限

[
  {
    "id": 1,
    "category": "开发管理权限",
    "description": "帮助小程序进行功能开发和开发设置"
  },
  {
    "id": 2,
    "category": "基本信息设置权限",
    "description": "帮助小程序进行设置名称、头像、简介、服务类目等信息"
  },
  {
    "id": 3,
    "category": "推广权限",
    "description": "帮助小程序进行流量投放管理"
  },
  {
    "id": 4,
    "category": "数据权限",
    "description": "帮助小程序进行数据分析"
  },
  {
    "id": 5,
    "category": "账号管理权限",
    "description": "帮助小程序获取二维码,进行账号管理"
  },
  {
    "id": 6,
    "category": "支付服务权限",
    "description": "帮助小程序开通支付服务,获取支付相关信息"
  }
]
Copyright ©2024, All Rights Reserved