我已经在GitHub上查看了watson-developer-cloud软件包及其同名命名空间。我是否需要直接访问我的应用程序中的REST API?
答案 0 :(得分:0)
您可以使用watson-developer-cloud
npm模块访问所有Watson和Alchemy API。
安装npm模块。
$ npm install watson-developer-cloud
从Bluemix获取Alchemy API密钥。
使用以下内容创建test.js
文件
var watson = require('watson-developer-cloud');
var alchemy_data_news = watson.alchemy_data_news({
api_key: '<api_key>'
});
var params = {
start: 'now-1d',
end: 'now'
};
alchemy_data_news.getNews(params, function (err, news) {
if (err)
console.log('error:', err);
else
console.log(JSON.stringify(news, null, 2));
});