- 请问这个音频文件链接为什么安卓可以播放,ios会报 -11850错误?
音频链接: https://app.penavicoxm.com/trade/filestore/GetAudio/%E6%8B%A6%E6%88%AA.wav?UserCode=XYH&UserComp=WDKY 错误截图: [图片] 示例代码: async playAudio(content) { let audioCommonContext = wx.createInnerAudioContext(); audioCommonContext.src = ""; audioCommonContext.autoplay = true; audioCommonContext.onError(res => console.log("audioError", res)); audioCommonContext.onCanplay(res => console.log("onCanplay", res)); if (wx.setInnerAudioOption) { wx.setInnerAudioOption({ obeyMuteSwitch: false, }) } else { audioCommonContext.obeyMuteSwitch = false; } let userInfo = Util.getUserInfo(); let fileUrl = 'https://app.penavicoxm.com/trade/filestore/GetAudio/%E6%8B%A6%E6%88%AA.wav?UserCode=XYH&UserComp=WDKY'; this.VoiceUrl = fileUrl; audioCommonContext.src = fileUrl; console.log(fileUrl); try { await new Promise((res, rej) => { audioCommonContext.onError(x => rej(x)); audioCommonContext.onEnded(x => { console.log(x); }); audioCommonContext.play(); setTimeout(() => { audioCommonContext.play(); }, 10); }); } catch (err) { console.log('audioError', err); uni.showToast({ title: err, icon: 'none' }); } },
2023-08-24 - 开放平台为什么接收不到component_verify_ticket的推送?
appid wx5266262d8104a17d 调用地址 https://www.penavicoxm.com/openwechat/openwechat/callback
2023-08-22 - 设置服务器域名接口 一直报 47001 错误要怎么处理?
appid:wx2d95cd09fb7d9ece 请求接口 https://api.weixin.qq.com/wxa/modify_domain?access_token=ACCESS_TOKEN 请求参数 {"action":"set","requsetdomain":["https://app.penavicoxm.com","https://www.xmhsky.com"],"wsrequestdomain":["https://app.penavicoxm.com","https://www.xmhsky.com"],"uploaddomain":["https://app.penavicoxm.com","https://www.xmhsky.com"],"downloaddomain":["https://app.penavicoxm.com","https://www.xmhsky.com"],"udpdomain":[],"tcpdomain":[]} 返回内容 {"errcode":"47001","errmsg":"data format error rid: 61cbfe5a-2a22cc53-1a8c8600","IsSuccess":false,"requsetdomain":null,"wsrequestdomain":null,"uploaddomain":null,"downloaddomain":null,"udpdomain":null,"tcpdomain":null,"invalid_requestdomain":null,"invalid_wsrequestdomain":null,"invalid_uploaddomain":null,"invalid_downloaddomain":null,"invalid_udpdomain":null,"invalid_tcpdomain":null,"no_icp_domain":null}
2021-12-29 - 微信公众号跳转小程序提示错误怎么办?
错误提示:ERRCODE:40013,ERRMSG:invalid appid hint: [2sId_a04753954] 发送参数: { "touser":"ogrG41ZuYgIsHJa3rMoycGIT5D08", "appid":"wx95332c739da78aea", "template_id":"ryRsmbRinf66MkIUZr86Bx0g33fxf0kyBg4aqM-X-qQ", "url":"index/index?type='message'", "miniprogram":{ "appid":"wxdd9df6c23222e9ab", "page":"index/index?type='message'"}, "data":{ "first":{"value":"厦门测试非常豪华大酒店,您有新的订单需要确认\n房型:高级总统房"}, "keyword1":{"value":"2019-10-16 10:08:05"}, "keyword2":{"value":"2019-10-16 至 2019-10-17"}, "keyword3":{"value":"1"}, "keyword4":{"value":""},"remark":{"value":"总价:78 平台直订"}} } 第一个appid是公众号的appid,请问是哪里出了问题?
2019-10-16