你好,能获取微信小程序的urlScheme地址吗?
```python
def get_urlscheme(ACCESS_TOKEN):
url = "https://api.weixin.qq.com/wxa/generatescheme?access_token={}".format(ACCESS_TOKEN)
print(url)
data={
# // path跳转到的小程序目标页面,query跳转需要携带参数,在目标页面onload里面接收options里面,其他参数固定,获取看文档了解
'jump_wxa': {
'path': "/pages/index/index",
'query': "",
'env_version': "release", #// 正式版为"release",体验版为"trial",开发版为"develop"
},
'is_expire': True,
'expire_type': 1,
'expire_interval': 1,
#// env_version: "trial",
}
res = requests.post(url,data)
print(res.text)
错误:{"errcode":47001,"errmsg":"data format error rid: 6404773b-441f1b98-56e49432"}