- 微信同声传译,textToSpeech线上部分报错
部分用户在使用插件的语音合成功能时,报错{"retcode":-20003,"msg":"text to speech inner server failed."} ,感觉影响还在不断扩大,请帮忙赶紧看下问题到底是什么 let that = this; var plugin = requirePlugin("WechatSI") plugin.textToSpeech({ lang: "zh_CN", tts: true, content: text, success: function(res) { try{ console.log("succ tts=====", res.filename) }catch(e){ //TODO handle the exception } }, fail: function(res) { // 部分用户走了失败回调 {"retcode":-20003,"msg":"text to speech inner server failed."} console.log("fail tts=====", res) } })
01-26 - 微信同声传译,textToSpeech线上部分报错?
插件id:wx069ba97219f66d99 插件版本:0.3.5 APPID:wxa1361c4bc84baea5 部分用户在使用插件的语音合成功能时,报错{"retcode":-20003,"msg":"text to speech inner server failed."} ,感觉影响还在不断扩大,请帮忙看下问题到底是什么 [图片] let that = this; var plugin = requirePlugin("WechatSI") plugin.textToSpeech({ lang: "zh_CN", tts: true, content: text, success: function(res) { try{ console.log("succ tts=====", res.filename) }catch(e){ //TODO handle the exception } }, fail: function(res) { // 部分用户走了失败回调 {"retcode":-20003,"msg":"text to speech inner server failed."} console.log("fail tts=====", res) } })
01-26 - startLocationUpdate多次调用后onLocationChange会接收到多次重复数据
小程序再onShow中调用startLocationUpdate,在onHide内调用stopLocationUpdate,当手机锁屏后再次打开,stopLocationUpdate执行了关闭操作,这时startLocationUpdate再执行后,onLocationChange会接收到两条重复数据,经多次测试,再次锁屏打开后,就会接收到n+1次重复数据。[图片]
2023-08-31 - 单页模式下,wx.base64ToArrayBuffer返回undefined?正常模式没有问题
export function base64src(base64data, cb) { const [, format, bodyData] = /data:image\/(\w+);base64,(.*)/.exec(base64data) || []; if (!format) { return (new Error('ERROR_BASE64SRC_PARSE')); } const filePath = `${wx.env.USER_DATA_PATH}/${FILE_BASE_NAME}.${format}`; // 这里的buffer为 undefined const buffer = uni.base64ToArrayBuffer(bodyData); console.log("buffer.byteLength===") console.log(buffer.byteLength) fsm.writeFile({ filePath, data: buffer, encoding: 'binary', success() { console.log("单页模式保存成功==") console.log(filePath) cb(filePath); }, fail(error) { console.log("单页模式保存报错==") console.log(error) return (new Error('ERROR_BASE64SRC_WRITE')); }, }); };
2023-04-03 - 小程序分享朋友圈的那个单页模式的页面是否可以配置禁止再分享呢?
目前单页模式有很多限制比如不能调用login,导致我们分享逻辑有点问题。 请问是否可以考虑下 分享朋友圈点击进入的那个 单页模式 可以配置禁止分享。
2020-07-21 - 我们的app已上架,但当天跳转小程序出现次数限制?又提交app上架审核,提示软著名称与app名不一致
尊敬的审核人员 您好: 目前我们的app已上架,当天跳转小程序出现次数限制?,目前又提交app上架审核,未通过。 提示说“软著名称与app名称不一致”,我们现在新的软著正在申请中,可否先通过审核或能否提跳转额度次数。 现在我们是生产事故,官方可否先有个解决办法? [图片][图片]
2022-05-24 - 目前我公司移动应用已上架,线上环境遇到跳转微信小程序100次问题,可否加急审核? 非常感谢
appid :wx0855fd756cb5943e 目前我公司移动应用已上架,线上环境遇到跳转小程序100次问题,可否加急审核? 非常感谢 目前我公司移动应用已上架,线上环境遇到跳转小程序100次问题,可否加急审核? 非常感谢 目前我公司移动应用已上架,线上环境遇到跳转小程序100次问题,可否加急审核? 非常感谢 目前我公司移动应用已上架,线上环境遇到跳转小程序100次问题,可否加急审核? 非常感谢 目前我公司移动应用已上架,线上环境遇到跳转小程序100次问题,可否加急审核? 非常感谢
2022-05-23 - iOS接入Universal Links后,拉起小程序,报错invalid_app,是什么原因那?
[图片] @微信官方 谢谢! 微信应用配置如下: Universal Links:https://xiaoniubangjia.com/app/zhongbo/wechat/ apple-app-site-association文件如下: { "applinks": { "apps": [], "details": [ { "appID": "TeamID.BudleId", "paths": [ "/app/zhongbo/wechat/*"] } ] } }
2022-05-07