部分用户在使用插件的语音合成功能时,报错{"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)
}
})