- 隐私授权已添加,无法成功调用chooseMedia接口?
隐私授权功能已经添加了,今天突然chooseMedia接口无法使用,控制台也没报错就是调不起摄像头和文件
2023-10-19 - https://api.weixin.qq.com/sns/userinfo报错?
调用https://api.weixin.qq.com/sns/userinfo接口获取用户信息报错 {"errcode":48001,"errmsg":"api unauthorized rid: 6502ed5a-441d65eb-01a30e9a"}
2023-09-14 - 有信认识?
承蒙你们的喜爱? [图片]
2023-10-02 - 文章没有违规,怎么提示违规?请问怎么处理并发送?
【公众号】: 地图百事通 【浏览器UA】: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.203 【页面链接】: https://mp.weixin.qq.com/cgi-bin/appmsg?t=media/appmsg_edit&action=edit&type=77&appmsgid=100001362&token=1655212452&lang=zh_CN 【问题描述】: 文章没有违规,怎么提示违规?请问怎么处理并发送???谢谢
2023-11-01 - 使用腾讯地图wx.chooseLocation接口选择地址,开发和体验版都正常,发布上线就报错?
[图片] 1、如上图所描述,在微信开发者工具和体验版本上,都可以正确获取到地址,唯独发布上线版本选择不了地址,报错信息如下: MiniProgramError result is not defined ReferenceError: result is not defined at e.fail (https://usr/app-service.js:11299:1870) at https://lib/WASubContext.js:2:101623 at https://lib/WASubContext.js:2:101776 2、贴出具体代码,有微信小程序的技术员能帮找一下具体原因吗,万分感谢! chose_location: function() { var that = this; wx.chooseLocation({ success: function(e) { console.log("选中的地址:"+e.address); var lon_lat = e.longitude + ',' + e.latitude; var path = e.address; var s_region = that.data.region; var dol_path = ''; var str = path; var patt = new RegExp("(.*?省)(.*?市)(.*?区)", "g"); var result = patt.exec(str); if (result == null) { patt = new RegExp("(.*?省)(.*?市)(.*?市)", "g"); result = patt.exec(str); if (result == null) { patt = new RegExp("(.*?省)(.*?市)(.*县)", "g"); result = patt.exec(str); if (result != null) { s_region[0] = result[1]; s_region[1] = result[2]; s_region[2] = result[3]; dol_path = path.replace(result[0], ''); } } else { s_region[0] = result[1]; s_region[1] = result[2]; s_region[2] = result[3]; dol_path = path.replace(result[0], ''); } } else { s_region[0] = result[1]; s_region[1] = result[2]; s_region[2] = result[3]; dol_path = path.replace(result[0], ''); } var filename = dol_path + e.name; let addr_detail = filename; let address_component = ''; locat.getGpsLocation(e.latitude, e.longitude).then((res) => { address_component = res; if (address_component) { s_region[0] = address_component.province; s_region[1] = address_component.city; s_region[2] = address_component.district; addr_detail = filename || address_component.street; } that.setData({ region: s_region, lon_lat: lon_lat, addr_detail }) }); if (s_region[0] == '省') { wx.showToast({ title: '请重新选择省市区', icon: 'none', }) } }, fail: function(e) { wx.showToast({ title: '地址获取失败', icon: 'none', }) console.log('地址获取失败', e) } }) },
2022-05-17 - 分享内容至微信,无法正常返回原App
[视频] App端接入微信分享后,iOS14及以上分享内容至微信好友后,点击“返回App”无响应,iOS13则没有该问题。通过自检函数排查得出,iOS15系统下,自检函数能成功回调至第5步,iOS13系统下则能成功回调完7步。 微信SDK版本:1.9.2 AppID:wx89c7b04a238b85bb 时间点:2022.3.16 12:19 微信号:Chenh_1401150
2022-03-16 - 小程序设置中,通知开发者删除后,未能接收到邮件信息,这是什么原因啊?
[图片]
2023-02-27