# 找回授权码

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

为了防止授权小程序刷新令牌 authorizer_refresh_token 丢失后失去小程序的操作权限,增加补偿机制。对于目前已存在授权关系的情况,服务商可以直接找回授权码 authorization_code ,然后再换取授权小程序接口调用凭据 authorizer_access_token。

# 接口说明

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

# 请求参数

参数 是否必须 类型 备注
component_app_id string 第三方应用 appid
component_access_token string 第三方应用接口调用凭据
authorized_app_id string 被授权的小程序ID

# 响应

参数 类型 描述
result number 状态码 1-成功 非1-错误码
errorMsg string 错误提示信息,参考常见错误码
authorizationCode string 授权码
expiresIn number authorizer_access_token 的有效期,单位:秒

示例:

{
  "result":1,
  "errorMsg":"错误提示信息",
  "authorizationCode": "cnQolCb7CpzJSfjSTSRi48gj_Jg7wMTjfcMoVabsa1ujefO",
  "expiresIn": 3600
}

# 错误码

参考常见错误码

Copyright ©2024, All Rights Reserved