赞
踩
首先想要跳转到微信小程序得先知道AppID和secret
如果不知道的情况下是无法跳转的
urlscheme.generate
此时遇到一个问题是获取auth.getAccessToken
appid 此值在小程序里就可以获取 到
secret 这个值只能在可在 微信公众平台 - 设置 - 开发设置 里面找到
接下来放代码
this.$axios
.get(
'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=wxd596b98e0b20485c&secret=6ae04f87570c3f1674290d788d1f8fb9'
)
.then((res) => {
let access_token = res.data.access_token;
this.$axios
.post('https://api.weixin.qq.com/wxa/generatescheme?access_token=' + access_token, {
jump_wxa: {},
expire_type: 1,
expire_time: 24 * 60 * 1000,
expire_interval: 1,
})
.then((res) => {
location.href = res.openlink
});
});
这样就可以在手机浏览器里直接跳转到微信小程序了
如果有其他更好的方法,请留言~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。