小程序
小游戏
企业微信
微信支付
扫描小程序码分享
"InvalidParameter"
requestId: "62bd51409b80a45b6a53c5b0"
我看了下好像也不缺参数吧,不知道有没有大佬看一下
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
let appid = '1112223334'; // 这是错误 let appid = 1112223334; // 这是对的
这样写后边数字不要加引号;
plugin.setQCloudSecret(parseInt(appid), secretid, secretkey) 或者这样也可以
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
我也有这个问题,往上去搜也没搜到,代码用的官方示例,配置后id和key后调用都没用
var app = getApp() let appid = **** let secretid = '***' let secretkey = '****' let openConsole = true let plugin = requirePlugin("QCloudAIVoice") plugin.setQCloudSecret(appid, secretid, secretkey)//连接上腾讯云 const text = "腾讯云基于业界领先技术构建的语音合成系统,具备合成速度快、合成拟真度高、语音自然流畅等特点,能够应用于多种使用场景,让设备和应用轻松发声。" const innerAudioContext = wx.createInnerAudioContext(); //调用播放能力 Page({ hechengbobao(){ //验证腾讯云的 plugin.textToSpeech({ content: text, speed: 0, volume: 10, voiceType: 0, language: 1, projectId: 0, sampleRate: 16000, success: function(data) { let url = data.result.filePath; console.log("TTS success", url) if(url && url.length > 0){ innerAudioContext.autoplay = true; innerAudioContext.src = url; innerAudioContext.onPlay(() => { }); innerAudioContext.onError((res) => { console.log(res.errMsg) }); } }, fail: function(error){ console.log(error); } }) } })
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
let appid = '1112223334'; // 这是错误 let appid = 1112223334; // 这是对的
这样写后边数字不要加引号;
我也有这个问题,往上去搜也没搜到,代码用的官方示例,配置后id和key后调用都没用
var app = getApp() let appid = **** let secretid = '***' let secretkey = '****' let openConsole = true let plugin = requirePlugin("QCloudAIVoice") plugin.setQCloudSecret(appid, secretid, secretkey)//连接上腾讯云 const text = "腾讯云基于业界领先技术构建的语音合成系统,具备合成速度快、合成拟真度高、语音自然流畅等特点,能够应用于多种使用场景,让设备和应用轻松发声。" const innerAudioContext = wx.createInnerAudioContext(); //调用播放能力 Page({ hechengbobao(){ //验证腾讯云的 plugin.textToSpeech({ content: text, speed: 0, volume: 10, voiceType: 0, language: 1, projectId: 0, sampleRate: 16000, success: function(data) { let url = data.result.filePath; console.log("TTS success", url) if(url && url.length > 0){ innerAudioContext.autoplay = true; innerAudioContext.src = url; innerAudioContext.onPlay(() => { }); innerAudioContext.onError((res) => { console.log(res.errMsg) }); } }, fail: function(error){ console.log(error); } }) } })