微信小程序获取urlscheme

本文记录如何获取access_token和urlscheme

安装插件

由于直接请求接口会导致跨域
所以要使用一个简单使用的小插件,在 VS Code 中安装 REST Client 插件

获取access_token

getAccessToken.http

1
GET https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=${appid}&secret=${secret} HTTP/1.1

详见文档:
https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Get_access_token.html

获取urlscheme

getScheme.http

1
2
3
4
5
6
7
8
9
POST https://api.weixin.qq.com/wxa/generatescheme?access_token=${access_token}
Content-Type: application/json;charset=utf-8

{
"jump_wxa": {
"path": "/page/tabBar/index/index" // 小程序路径
},
"expire_time": 1670461556 // 过期时间,精确到秒,通常是当前时间 + 1~30天
}

详见文档:
https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/url-scheme/urlscheme.generate.html
相关规则:
https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/url-scheme.html


微信小程序获取urlscheme
http://example.com/20221110-微信小程序获取urlscheme/
作者
csorz
发布于
2022年11月10日
许可协议