开发 行业对接说明 本地生活业务对接 对接说明 单体小程序对接 获取access_token
# 获取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"
}
上一篇:《业务权限获取》
下一篇:《POIID获取》
仍有疑问? 前往社区提问