我正在尝试将Watson Speech to Text设置为可以在Node.Js应用程序中使用。
首先,我在app.js
文件中设置服务器端来获取令牌(这是我设置的express
服务器的设置的补充):
const AuthorizationV1 = require('watson-developer-cloud/authorization/v1');
const SpeechToTextV1 = require('watson-developer-cloud/speech-to-text/v1');
const TextToSpeechV1 = require('watson-developer-cloud/text-to-speech/v1');
const vcapServices = require('vcap_services');
// speech to text token endpoint
var sttAuthService = new AuthorizationV1(
Object.assign(
{
username: MY_IBM_APP_USERNAME, // or hard-code credentials here
password: MY_IBM_APP_PASSWORD
},
vcapServices.getCredentials('speech_to_text') // pulls credentials from environment in bluemix, otherwise returns {}
)
);
app.use('/api/speech-to-text/token', function(req, res) {
sttAuthService.getToken(
{
url: SpeechToTextV1.URL
},
function(err, token) {
if (err) {
console.log('Error retrieving token: ', err);
res.status(500).send('Error retrieving token');
return;
}
res.send(token);
}
);
});
(以上是IBM Speech Javascript SDK的示例)
然后在实际的服务器端文件中,我具有以下代码,首先获取令牌并激活语音输入(在example here之后):
fetch('/api/speech-to-text/token')
.then(function(response) {
return response.text();
}).then(function (token) {
var stream = WatsonSpeech.SpeechToText.recognizeMicrophone({
token: token,
outputElement: '#statement' // CSS selector or DOM Element to put the text in
});
stream.on('error', function(err) {
console.log(err);
});
document.querySelector('#stop').onclick = function() {
stream.stop();
};
}).catch(function(error) {
console.log(error);
});
但是,在Chrome上,我收到一条错误消息“无法构建Web套接字”,而在Safari上,我只得到/api/speech-to-text/token
的404错误,该错误应该得到令牌。
我在做什么错?错误在哪里?
谢谢!
答案 0 :(得分:0)
我能够重现您的问题-该示例似乎使用的是包含错误的旧版watson-developer-cloud
。
更新至watson-developer-cloud
(v3.12.0)的最新版本对我来说已解决该问题。