- 华为meta 30pro 报错 system permission denied
[图片][图片][图片][图片] 手机设置及报错如下,初始化蓝牙的时候调用api成功了,但是调用wx.startBluetoothDevicesDiscovery开始搜索的时候报”system permission denied“请问是怎么回事?麻烦大佬们看一下,很急。
2024-09-26 - iphone13 搜索不到相关设备
[图片],iphone13,通过调用wx.startBluetoothDevicesDiscovery成功以后,在wx.onBluetoothDeviceFound的回调中没有返回预期的设备,同样的程序,别的同学可以搜到,请问是什么问题呢
2024-09-23 - 华为手机 调用wx.startBluetoothDevicesDiscovery失败
各位大佬,麻烦帮看下什么问题,华为mate 30pro,定位和蓝牙权限都已经开启,并且小程序里授权弹窗也选择了允许,但是还是报错 startBluetoothDevicesDiscovery :fail: system permission denied[图片][图片]
2024-09-23 - 小程序 长期订阅,是否支持查询订阅的状态
https://developers.weixin.qq.com/miniprogram/dev/api/open-api/subscribe-message/wx.requestSubscribeDeviceMessage.htmlhttps://developers.weixin.qq.com/miniprogram/dev/api/worker/wx.createWorker.html 请问,微信小程序调用wx.requestSubscribeDeviceMessage发起长期订阅后,是否支持查询订阅的状态(即我是选择了拒绝还是允许)
2024-04-22 - launchMiniprogram:fail_invalid signature
h5跳转微信小程序的时候,wx.config里明明注册了jsApiList: ['wx-open-launch-weapp','updateAppMessageShareData','chooseImage', 'previewImage', 'launchMiniprogram', 'invoke'],但是还是报错 ’launchMiniprogram:fail_invalid signature more info at https://open.w rk.weixin.qq.com devtool/query? e = 40093 maybe not added to jsApiList in wx.config‘, H5代码片段: config() { let myUrl = window.location.href.split('#')[0]; const that = this; getWxConfig({ url: myUrl }) .then((res) => { console.log('获取微信config: ', res, res.data) if (res.code == "1") { this.$wx.config({ // debug: false, beta: true, debug: true, appId: res.data.appId, timestamp: res.data.timeStamp, nonceStr: res.data.nonceStr, signature: res.data.signature, jsApiList: ['wx-open-launch-weapp','updateAppMessageShareData','chooseImage', 'previewImage', 'launchMiniprogram', 'invoke'], openTagList: ['wx-open-launch-weapp'] }); this.$wx.ready(() => { console.log('jssdk配置成功', that.$wx) if (localStorage.getItem('jumpPage')) { console.log('准备跳转小程序'); const epId = localStorage.getItem('uwcEpid') const userId = localStorage.getItem('uwcUserId') const perCode = localStorage.getItem('uwcPerCode') const accName = localStorage.getItem('uwcAccName') // 直接跳转 const uiasToken = localStorage.getItem('uiasToken'); const homeUrl = localStorage.getItem('homeUrl'); const obj = { scanCode: 'pages/scan-code/index', recharge: 'pages/recharge/index', home: 'pages/home/index' } const path = localStorage.getItem('jumpPage') ? obj[localStorage.getItem('jumpPage')] : 'pages/home/index'; console.log('path---', path); that.$wx.invoke('launchMiniprogram', { "appid" : this.appId, // 需跳转的小程序appid "path" : `${path}.html?epId=${epId}&perCode=${perCode}&accName=${accName}&userId=${userId}&uiasToken=${uiasToken}&homeUrl=${homeUrl}`, }, function(res) { console.log('跳转res---', res); if(res.err_msg == "launchMiniprogram:ok") { // 正常 console.log('企业微信跳转正常'); } else { that.errTip = '企业跳转失败:' + JSON.stringify(res) // 错误处理 } }); } else { this.getHtml(); } }); } else { this.$toast(res.msg || res); } }) }
2023-12-06 - errno:5,errMsg:request:fail fail:time out
微信小程序请求接口的时候,时而请求通,时而不通,不通的时候报错:errno:5,errMsg:request:fail fail:time out,请问这个大概是什么原因引起的
2023-11-23 - getBLEDeviceServices 调用后没有回调
https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-ble/wx.getBLEDeviceServices.html 微信小程序调用api getBLEDeviceServices 没有响应
2023-10-10