1

我正在学习使用Watson Speech JS SDK。我特别喜欢从 Microphone 转录,带有 Alternatives。我正在使用 Firebase Cloud Function 生成我的令牌。我使用的是 AngularJS,而不是 JQuery。我遇到的第一个问题是

var stream = WatsonSpeech.SpeechToText.recognizeMicrophone(Object.assign(token, {
          objectMode: true,
          format: false,
          wordConfidence: true
}));

我收到此错误消息:

WatsonSpeechToText: missing required parameter: opts.token

(使用$scope.tokentoken没有区别。)

在文档中查找此错误:

module.exports = function recognizeMicrophone(options) {
  if (!options || !options.token) {
    throw new Error('WatsonSpeechToText: missing required parameter: opts.token');
  }

好的,它正在寻找一个options对象。我用这段代码修复了错误:

const options = {
      token: $scope.token,
      objectMode: true,
      format: false,
      wordConfidence: true
};
console.log(options);
var stream = WatsonSpeech.SpeechToText.recognizeMicrophone(options);

现在我得到这个错误:

WebSocket connection to 'wss://stream.watsonplatform.net/speech-to-text/api/v1/recognize?model=en-US_BroadbandModel&watson-token=[object%20Object]' failed: HTTP Authentication failed; no valid credentials available

options对象记录以下内容:

token:
  access_token: "eyJraWQiOiIyMDIwMDIyNTE4MjgiLCJhbGciOiJSUzI1NiJ9.eyJpYW1faWQiOiJp0tU2..."
  expiration: 1585332575
  expires_in: 3600
  refresh_token: "OKC8z8ebLMzZcrAt6YgInnJJn0UIx1P3NTeDvdEC3kJqIQ7Yn9J9iu6-DF..."
  scope: "ibm openid"
  token_type: "Bearer"
objectMode: true
format: false
wordConfidence: true
smart_formatting: false

令牌是一个 JSON 对象,其中包括access_token. 这是SDK想要的吗?RecognizeStream 文档没有说明它是否需要 JSON 令牌或只是裸access_token.

添加000到该expiration字段表明我还剩 53 分钟使用此令牌。

我正在使用特定于我的 Speech-to-Text 服务的 API 密钥。

还有其他建议吗?

4

1 回答 1

0

SDK 0.37.0版引入了重大更改:

All options parameters for all methods are coverted to be lowerCamelCase
For example: access_token is now accessToken and content-type is now contentType

这与 IBM 从使用用户名/密码身份验证的 Cloud Foundry 服务转向使用 IAM 身份验证和 api 密钥的服务有关。SDK 文档说:

NOTE: The token parameter only works for CF instances of services. For RC services using IAM for authentication, the accessToken parameter must be used.

如果您使用 api 密钥,该options对象如下所示:

const options = {
      accessToken: $scope.token,
      objectMode: true,
      format: false,
      wordConfidence: true
};

如果您遗漏令牌属性,则会收到以下错误消息:

WatsonSpeechToText: missing required parameter: opts.token (CF) or opts.accessToken (RC)

这意味着,如果您从 Cloud Foundry (CF) 获取令牌,则该属性必须是opts.token(或options.token);但是如果你从 IAM auth 和一个 api-key 获取你的令牌,RC我不知道为什么会调用它,那么该属性必须是opts.accessToken(或options.accessToken)。

令人困惑的是,演示源代码暗示这access_token是属性名称:

var stream = WatsonSpeech.SpeechToText.recognizeMicrophone(Object.assign(token, {
          objectMode: true,
          format: false,
          wordConfidence: true
}));

Object.assign获取target来自 IBM 的令牌对象,然后添加或替换source对象中的属性和值。因为该属性access_token位于 IAM 令牌中,所以您会认为,因为演示运行,access_token它就是该属性。但显然演示是在 Cloud Foundry 令牌上运行的,它可以使用tokenaccess_token作为属性名称。

如果您收到此错误消息:

WatsonSpeechToText: missing required parameter: opts.token (CF) or opts.accessToken (RC)

那么您既不使用token也不accessToken作为属性名称。

如果您收到此错误消息:

WebSocket connection to 'wss://stream.watsonplatform.net/speech-to-text/api/v1/recognize?model=en-US_BroadbandModel&watson-token=[object%20Object]' failed: HTTP Authentication failed; no valid credentials available

那么您将使用token通过 IAM api-key 生成的令牌。或者您的令牌已过期。您可以通过将此代码放入您的应用程序中轻松检查,以告知您的令牌还剩多少分钟:

// shows time to token expiration
    var expiry = new Date($scope.token.expiration * 1000);
    var now = Date.now();
    var duration = -(now - expiry);

    function msToTime(duration) {
      var milliseconds = parseInt((duration % 1000) / 100),
      seconds = Math.floor((duration / 1000) % 60),
      minutes = Math.floor((duration / (1000 * 60)) % 60),
      hours = Math.floor((duration / (1000 * 60 * 60)) % 24);

      hours = (hours < 10) ? "0" + hours : hours;
      minutes = (minutes < 10) ? "0" + minutes : minutes;
      seconds = (seconds < 10) ? "0" + seconds : seconds;

      return "Token expires in " + minutes + ":" + seconds + " minutes:seconds";
    }
    console.log(msToTime(duration))

您可以从 CLI 测试您的令牌是否有效。首先获得一个新的令牌:

curl -k -X POST \
  --header "Content-Type: application/x-www-form-urlencoded" \
  --header "Accept: application/json" \
  --data-urlencode "grant_type=urn:ibm:params:oauth:grant-type:apikey" \
  --data-urlencode "apikey=s00pers3cret" \
  "https://iam.cloud.ibm.com/identity/token"

然后请求语言模型:

curl -X GET "https://stream.watsonplatform.net/speech-to-text/api/v1/models?access_token=eyJraWQiO...."

我的代码中还有另一个问题。我正在更新IBM Speech-to-Text SDK,但我的代码链接到了三年前我用 bower 安装的旧 SDK。当 0.38.0 是最新版本时,我没有意识到我使用的是 0.33.1。将此添加到您的代码中以解决此问题:

console.log (WatsonSpeech.version);

使用旧的 SDK,我收到一条旧的错误消息,甚至没有提到新的属性名称:

WatsonSpeechToText: missing required parameter: opts.token

我的文有更多关于 IBM Cloud Speech-to-Text 的信息。

于 2020-03-31T18:06:15.453 回答