小程序
小程序的管理员,登录小程序开发工具的时候,发现无法登录。
想要实现从电脑端页面扫码跳转到微信公众号上,并且客户需要手动授权,从此获取到该用户的openId
如题 [图片]
页面元素仅有<view /> 第一种 1、skyline配置 :"defaultDisplayBlock": true 实际的大小如下: [图片] [图片] 第二种:2、skyline配置 "defaultContentBox": true 实际的大小如下: [图片][图片]
小程序支持yjs.js 和y-websocket?
提交代码审核 提示隐私协议需要更新说是代码中获取了 用户手机号,排查下来发现并没有 如何解决?
https://pay.weixin.qq.com/wiki/doc/apiv3_partner/open/pay/chapter3_3_1.shtml[图片] https://pay.weixin.qq.com/wiki/doc/apiv3/open/pay/chapter2_8_1.shtml [图片]
我有一个企业的公众号,现在不知道账号密码,需要注销,请问这个怎么弄
// 连接蓝牙 async linkDevice() { const that = this; const maxRetryCount = 3; let retryCount = 0; // 连接连接失败,重试3次 async function connectWithRetry() { try { const blueId = that.getBluetoothId(); await uni.openBluetoothAdapter(); await uni.getBluetoothAdapterState(); await uni.startBluetoothDevicesDiscovery(); const joinResult = await connectBluetooth(blueId); uni.stopBluetoothDevicesDiscovery({ success(res) { console.log("停止搜索成功", res); }, fail(err) { console.log("停止失败", err); }, }); if (joinResult.err) { throw new Error("连接失败"); } } catch (err) { console.log("初始化蓝牙失败", err); if (retryCount < maxRetryCount) { retryCount++; console.log(`重试连接,当前第 ${retryCount} 次`); await connectWithRetry(); } else { // 达到最大重试次数,执行失败处理 uni.showModal({ title: "提示!", content: "蓝牙连接失败,请重新操作设备!", showCancel: false, confirmText: "确定", success: (res) => { if (res.confirm) { that.unlockingFailure(); } }, }); } } } // 开始首次连接尝试 await connectWithRetry(); }, /** * 连接蓝牙 + 获取主服务 + 获取特征码 */ export const connectBluetooth = async (deviceId) => { console.log('deviceId---------------------', deviceId); try { // 连接蓝牙设备 await uni.createBLEConnection({ deviceId, timeout: 3000, }); // 获取主服务 const serviceId = await getServiceIdWithRetry(deviceId, 10); // 获取特征码 const characteristicId = await getCharacteristicId(deviceId, serviceId); // 返回设备数据 const deviceData = { deviceId, serviceId, characteristicId, }; return deviceData; } catch (error) { console.log('连接蓝牙发生错误', error); // 连接失败 return { err: true, errName: error.toString(), ...error, }; } }; [图片] 图片是第4次重新操作设备的日志输出,可以看到在1秒钟直接超时失败重连3次都是超时
安卓端可以正常显示到当前时间,ios端不能正常显示
[图片]
最近开发版、体验版,小程序能正常运行,但是报这个错,这是为什么啊,会不会影响线上?求解[图片][图片]
我们是服务商调用你们的接口进行发布小程序,但是每次发布完小程序,小程序的域名都会被重置,然后需要重新调用你们的接口(https://api.weixin.qq.com/wxa/modify_domain)去配置小程序的域名,这个是什么原因
只笼统的说我小程序强制用户使用定向推送功能,也不说到底是什么问题,怎么整改呢? 我们基于猜测更新了一个版本,要怎么知道自己是否整改好了呢? 通知说明天前需要整改完成不然将依法依规组织开展处置工作,急!
[图片] 上面是代码 [图片] 上面是这个是鸿蒙5.0返回的特征值数据 [图片] 上面是这个是安卓返回的特征值数据
https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&grant_type=authorization_code
首先排除图片问题,因为公司有四个微信小程序,其中三个都用此营业执照照片正常提交年审了,唯独这个小程序怎么提交都不对,这个图片不到500k大小的jpg格式,也尝试用截图方式保存为png格式,依然不行。 [图片]
小程序已认证,允许被搜索已开启 全称:好看短剧去水印 简称:好看短剧 请官方放行,谢谢!
为什么二审报备超过7天,还没有预上线通知
隐私协议中申请了录音权限了 但是在 onload 中直接触发 开始录音却无法自动唤起需要用户隐私授权的弹窗 必需要从 获取昵称 获取用户地理位置 唤起一次获取用户同意隐私协议才行 再触发录音才可以 Page({ data: {}, onLoad() { this.initRecorder() }, initRecorder() { const recorderManager = wx.getRecorderManager() console.log('recorderManager :>> ', recorderManager) recorderManager.start({ duration: 600000, // 设置录音的时长 sampleRate: 44100, // 较高的采样率,捕捉更多细节 numberOfChannels: 1, // 单声道 encodeBitRate: 96000, // 比特率适中,保证录音质量 format: 'pcm', // 格式 frameSize: 50, // 较小的帧大小,更灵敏地捕捉音量变化 }) }, })
显示什么错误