里面需要注意几个点: 1、能拉起,但是不能到指定页面,确定wx的sdk里面是否添加了其他的appid 2、不能拉起,但是url是在对话框点开的,这种情况可以尝试把url发送给公众号,在公众号中点击链接打开 3、其中一个环境可以拉起,ios需要再对应的微信sdk添加对应的appid
wx-open-launch-app IOS版无法唤起App,Android版却可以?已满足了网页启动移动应用的所有条件(主体一致、两边账号都已审核,获得了网页跳转移动应用的能力,配置了安全JS安全域名),在安全JS域名下测试页面添加 wx-open-launch-app 开放标签,能够在手机微信中实际显示按钮形态。IOS版点击按钮后出现提示“即将离开微信,打开xxx”,点击“允许”后无反应;Android版没有问题已经成功跳转。
2023-11-06问题已解决,万事靠自己,唉
微信跳转APP,安卓可以成功跳转,IOS却无法成功跳转是否和ios的app配置有关?已满足了网页启动移动应用的所有条件(主体一致、两边账号都已审核,获得了网页跳转移动应用的能力,配置了安全JS安全域名),在安全JS域名下测试页面添加 wx-open-launch-app 开放标签,能够在手机微信中实际显示按钮形态。IOS版点击按钮后出现提示“即将离开微信,打开xxx”,点击“允许”后无反应;Android版没有问题已经成功跳转。
2022-04-06你好,你用视图查看了自己的按钮是否只是被移动到某个看不到的位置了呢
微信开放标签,微信h5跳转App,wx-open-launch-app,标签不显示,无法调起app?[图片] [图片] [图片] 执行了wx.ready后,弹出的 按钮在安卓ios上都不显示,并且无法弹出,即将理开微信,打开xxxapp,无法调起app <template> <wx-open-launch-app id="launch-btn" appid="" extinfo=""> <script type="text/wxtag-template"> <style>.btn { padding: 12px; color: #f00; }</style> <button class="btn">App内查看</button> </script> </wx-open-launch-app> </template> mounted () {this.getSign()}, methods: { getSign () { getSignature({ currentUrl: encodeURIComponent(isUrl) }).then(res => { this.signInfo = res this.laodInfo(res) }).catch(err => { console.log(err) }) }, laodInfo (res) { wx.config({ debug: true, appId: res.appId, timestamp: res.timestamp, nonceStr: res.nonceStr, signature: res.signature, jsApiList: [ 'checkJsApi', 'onMenuShareTimeline', 'onMenuShareAppMessage' ], openTagList: ['wx-open-launch-app'] }) wx.ready(function () { console.log('ready') wx.checkJsApi({ jsApiList: ['wx-open-launch-app'], success: function (res) { Toast(JSON.stringify(res) + '111111111') const btn = document.getElementById('launch-btn') console.log(btn, 'oooo') btn.addEventListener('launch', function (e) { Toast('success') }) btn.addEventListener('error', function (e) { Toast(JSON.stringify(e) + '2222222222') }) btn.addEventListener('WeixinOpenTagsError', function (e) { console.error(e.detail.errMsg) Toast(JSON.stringify(e) + '3333333333') }) }, fail: () => { Toast(222) } }) }) wx.error(function (err) { Toast(333) Toast(JSON.stringify(err) + '444444444') }) } }
2022-04-06微信聊天中要使用名片式url才可以拉起app
开放标签无法拉起APP?在微信聊天中直接打开使用开放标签的链接,无法正常拉起APP。通过公众号中点击按钮跳转至对应页面,或者使用二维码打开对应页面开放标签使用正常。请问是存在bug还是相关外链政策有所修改?
2022-04-02