0

我已经从以下链接编辑了代码

https://github.com/watson-developer-cloud/discovery-nodejs

我已更改环境变量和发现服务用户名和密码。

但是在运行代码时,它总是转到默认服务(它在上面的链接中指定的那个)而不是我的特定发现服务。 默认服务

4

1 回答 1

0

取决于您所说的默认服务是什么意思。如果您在谈论服务端点,那么在实例化 DiscoveryV1 类时,在文件 app.js 中为您正在使用的端点添加一个 url 说明符。

const discovery = new DiscoveryV1({
  // If unspecified here, the DISCOVERY_USERNAME and
  // DISCOVERY_PASSWORD env properties will be checked
  // After that, the SDK will fall back to the bluemix-provided VCAP_SERVICES environment property
  // username: '<username>',
  // password: '<password>',
  version_date: '2016-11-09',
  url: '<endpoint>',
  qs: { aggregation: `[${queryBuilder.aggregations.join(',')}]` }
});
于 2017-06-23T12:56:21.877 回答