# 获取access token

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

单体小程序获取access_token,该授权方式使用 OAuth2 的 client credentials 模式,即向开发者授权非用户资源。

项目
Host https://open.kuaishou.com
Path /oauth2/access_token
Method POST, GET
Content-Type application/x-www-form-urlencoded

Param

参数 是否必须 类型 说明
app_id string 小程序id
app_secret string 小程序申请时的密钥
grant_type string 固定值“client_credentials”

Response

{
  "result": 1,
  "access_token": "xxxxxxx", // 用于获取隐私资源
  "expires_in": 23435,          // 过期时间(秒)
  "token_type" : "bearer"
}
Copyright ©2024, All Rights Reserved