开发者工具回退之前版本问题解决不报错了。[图片]
智聆语音评测插件报错昨天升级了开发者工具,然后就开始报错了 开发工具版本 [图片] 报错截图 [插件 wxe5a00a1780c8eb95] provider:wxe5a00a1780c8eb95, version:2.0.2, 系统错误,错误码:41002,appid missing [rid: 5e4171cc-1731374459] 插件文档: https://mp.weixin.qq.com/wxopen/plugindevdoc?appid=wxe5a00a1780c8eb95&token=&lang=zh_CN(env: Windows,mp,1.06.2409140; lib: 3.6.4) [图片]
2024-11-12最后找到答案了,看这篇文章 https://www.cnblogs.com/yanglei-xyz/p/17173743.html mqtt服务端使用的是EMQX,在/etc/emqx/emqx.conf加上如下两句: listeners.ws.default.websocket.fail_if_no_subprotocol = false listeners.wss.default.websocket.fail_if_no_subprotocol = false 重启emqx即可: emqx_ctl restart 真机调试连接就没有任何问题了
小程序使用mqtt连接WebSocket调试工具可以正常连接,真机不行?小程序使用https://unpkg.com/mqtt@4.1.0/dist/mqtt.min.js MQTT库连接mqtt服务器,开发者工具连接都没有问题,域名也加入到websocket域名列表,并且也配置了证书文件,但是IOS真机调试就无法连接,也翻阅了社区之前其他人的解决办法,都试了一个遍,还是无法解决真机无法连接的问题。 [图片] 请问改如何处理?
2024-08-18哦,3q 可以获取,知道了,谢谢
如何获取已发布文章列表?最近公众号后台修改了规则,之前调用接口可以获取已发布文章列表,也就是https://developers.weixin.qq.com/doc/offiaccount/Publish/Get_publication_records.html获取成功发布列表接口,现在获取不到了?
2023-09-13测试地址:https://t.course.dajishizhijia.com/wx/wx.php
updateAppMessageShareData功能不生效?[图片] js安全域名,ip白名单都设置正确,在开发者工具测试也一切正常,到了真机无论是android还是IOS都不生效,点击右上角...分享就是当前页面链接。 代码如下 <script> wx.config({ debug: true, appId: 'wxc00af4f21bf89c8f', timestamp: 1645502183, nonceStr: 'YATtdJ6WzVE9f1lA', signature: 'ab1adcd4b0b3fb1585ae9ff72be634953e55a6c6', jsApiList: [ 'checkJsApi', 'onMenuShareTimeline', 'onMenuShareAppMessage', 'updateAppMessageShareData', 'updateTimelineShareData' ] }); wx.ready(function() { wx.checkJsApi({ jsApiList: [ 'onMenuShareAppMessage', 'onMenuShareTimeline', 'updateAppMessageShareData', 'updateTimelineShareData' ], success: function(res) { alert(JSON.stringify(res)); console.log(res) }, fail:function(res){ alert(JSON.stringify(res)); console.log(res) } }); /*wx.onMenuShareAppMessage({ title: '分享标题', // 分享标题 desc: '分享描述分享描述分享描述。', // 分享描述 link: window.location.href, type:'link', img_url: 'https://t.course.dajishizhijia.com/wx/tiger.jpg', // 分享图标 success: function() { alert('onMenuShareAppMessage success'); }, cancel: function() { alert('cancel'); }, fail: function(res) { alert('fail:'+JSON.stringify(res)); console.log(res) } });*/ wx.updateAppMessageShareData({ title: '分享标题', // 分享标题 desc: '分享描述分享描述分享描述。', // 分享描述 link: window.location.href, type:'link', imgUrl: 'https://t.course.dajishizhijia.com/wx/tiger.jpg', // 分享图标 success: function() { alert('updateAppMessageShareData success'); }, cancel: function() { alert('cancel'); }, fail: function(res) { alert('fail'+JSON.stringify(res)); console.log(res) } }); }); wx.error(function(res) { alert(res.errMsg); console.log(res) }); </script>
2022-02-22