我也遇到这个问题了,最后不知道怎么解决的,如果你的也是改完 appid 信息不想请,模拟器钓不起来微信分享,那就应该是有缓存,关闭当前开发软件,重启下开下,或者重启电脑;我的无缘无故好的,我也无厘头 感觉就是整的~
微信分享,提示“由于应用包名签名信息校验不通过,无法分享到微信”,签名自查无问题,部分手机出现改问题[图片]
2023-06-28在微信环境能打开,安卓 ios 都能打开! [图片]
URL Scheme无法打开微信小程序,显示“对不起,当前页面无法访问“?https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/url-scheme.html 根据4月11日新规以后,生成的URLScheme在微信外打开就是正常的,但是在微信内打开时好时坏,在微信内打开有时候就显示“对不起,当前页面无法访问“?这是什么原因?
2023-03-13在微信环境能打开,安卓 ios 都能打开! [图片]
微信小程序 h5 通过 URL Scheme 方式 ios 无法打开其他微信小程序?因为公司业务需要,在微信小程序内,通过webview的方式,内嵌h5页面;同时需要在h5页面内,点击按钮 唤起 另一个微信小程序;目前我们是通过 location.href = 'URL Scheme 的方式;现状 安卓可以正常唤起另一个小程序,但 ios 无法正常唤起另一个小程序,不知道这是官方限制了,还是我们用的有问题?
2023-03-13在微信环境能打开,安卓 ios 都能打开! [图片]
今天好像IOS系统通过URL Scheme无法打开微信小程序,显示页面无法访问https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/url-scheme.html 今天好像IOS系统通过URL Scheme无法打开微信小程序,显示“对不起,当前页面无法访问“。麻烦看下什么原因。 weixin://dl/business/?t=O2GSbAClmYl
2023-03-13你换个写法 这么写 [图片] 我遇到的问题是这样的 我也是 我也是[图片]
系统错误,错误码:-80422?message:Error: 系统错误,错误码:-80422,error: [wx.chooseLocation, wx.getLocation] is wrong API name [20220721 11:33:02][wxffb9ad8df11d****] appid: wxffb9ad8df11d**** openid: o6zAJs6SvopqWoWOCs3Rt7Zp**** ideVersion: 1.06.2206271 osType: win32-x64 time: 2022-07-21 11:33:13 [图片] 请问该怎么处理?
2022-07-21vue uni-app 欢迎查看 https://blog.csdn.net/qq_731335498/article/details/118807840
<wx-open-subscribe>公众号开放标签不会调起授权?进入公众号点击开放标签按钮之后,不会调起授权信息,wx.config测试是通过的。appid:wx5701316c42c28f35,代码如下: <wx-open-subscribe template="noZ9hn093wlgALyjri0tMtcwC9ZUgnDAGguDn4DTS8A" id="subscribe-btn"> <script type="text/wxtag-template" id="demo"> <style> .subscribe-btn { /*对应标签样式*/ width: 100%; height: 50px; text-align: center; line-height: 50px; color: #fff; background-color: #07c160; } </style> <div class="subscribe-btn">一次性模版消息订阅</div> </script> </wx-open-subscribe> <script> var btn = document.getElementById('subscribe-btn'); btn.addEventListener('success', function (e) { alert("333") }); btn.addEventListener('error', function (e) { alert("555") }); </script>
2021-07-16https://developers.weixin.qq.com/community/develop/doc/000ce83424c85022630c2e8d451800?highLine=wx-open-subscribe
公众号订阅按钮 wx-open-subscribe 怎么获取用户点击的事件?公众号订阅按钮 wx-open-subscribe 是否有方法可以获取用户点击了订阅按钮的事件, 不是允许和取消的回调。。。。
2021-07-13config接口里的的timestap,nonceStr,signature,jsApiList ,这些数据你的跟后台要
微信开放标签应该怎么使用?[图片] config接口里的的timestap,nonceStr,signature,jsApiList参数是从哪里获取的?我查找的文档里都是从后台调用接口的返回值,但是我不需要调用后台接口啊。有没有大佬指导一下应该怎么使用开放标签进行外部H5网页跳转到小程序
2021-07-12感谢分享,用楼主得方法确实能吊起授权啥得,但是,怎么接收他是点击了同意还是不同意呢? <template> <view> <!-- #ifdef H5 --> <view class="boxBorder"> <wx-open-launch-app id='launch-btn' appid='qwtiosndkd51sd85a4' extinfo='' @launch="changeLaunch"> <script ref="launchScript" type="text/wxtag-template"> <button>打开APP</button> </script> </wx-open-launch-app> </view> <!-- #endif --> <view class="subscribe" v-if="!subState" > <template type="text/wxtag-template"> <view class="subscribe-icon"> <image class="subscribe-icon-one" src="/static/static/img/finger_00.png"></image> <image class="subscribe-icon-two" src="/static/static/img/finger_01.png"></image> </view> <view class="subscribe-cont"> <wx-open-subscribe :template="templateIds" id="subscribe-btn" @success='changeSuccess' @error='changeError' > <script type="text/wxtag-template" slot="style"> <style> .subscribe-txt{ color: #89663f; font-weight: bold; -webkit-animation: subscribeCont 1s linear infinite; animation: subscribeCont 1s linear infinite; display: inline-block; height: 40px; width: 160px; text-align: center; line-height: 40px; } @keyframes subscribeCont { 25% { transform: scale(.98); } 50%, 100% { transform: scale(1); } 75% { transform: scale(1.05); } } </style> </script> <script type="text/wxtag-template"> <view class="subscribe-txt">点击消息提醒</view> </script> </wx-open-subscribe> </view> </template> </view> </view> </template> <script> const jweixin = require('jweixin-module'); export default { data() { return { templateIds: ['R9LbtDjg9sC-o3xUS2kDcSQ9MS4I67LnacAS8Fsmxp5'], subState: false } }, onReady() { wx.$api.index.wpaySubscribeH5Info(location.href.split('#')[0], ['chooseWXPay', ]).then(res1 => { let w_pay = JSON.parse(res1.data) // jweixin.config(w_pay); jweixin.config({ debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: w_pay.appId, // 必填,公众号的唯一标识 timestamp: w_pay.timestamp, // 必填,生成签名的时间戳 nonceStr: w_pay.nonceStr, // 必填,生成签名的随机串 signature: w_pay.signature, // 必填,签名 jsApiList: ['wx-open-subscribe', 'wx-open-launch-app', 'launchAppLication'], // 必填,需要使用的JS接口列表q openTagList: ['wx-open-subscribe', 'wx-open-launch-app'] // 必填,需要使用的JS接口列表q }); jweixin.ready(() => { console.log('jweixin消息已经准备就绪啦 ,开始操作吧,,,,') }) }).catch(err => { wx.showToast({ title: err.message, icon: 'none' }) }) } } </script>
请问 uniapp 是否支持 微信开发标签 <wx-open-launch-app>[图片][图片] 本地运行项目 到 这个页面 会报上面的错误 测试线不会报错 但是 在真机 微信浏览器内 点击这个 打开app 没有反应 请问这是什么情况?
2021-07-12config 信息 跟后端要一个接口,接口返回的全部数据放到config中即可
微信开放标签<wx-open-subscribe>如何使用?jweixin.config({ debug: true, appId: res.data.appId, // 必填,公众号的唯一标识 timestamp: res.data.timestamp + '', // 必填,生成签名的时间戳 nonceStr: res.data.noncestr + '', // 必填,生成签名的随机串 signature: res.data.sign, // 必填,签名,见附录1 openTagList: ['wx-open-subscribe'], jsApiList: ['addEventListener'], }); config内容应该如何填写
2021-07-12