我在GitHub上查看了watson开发者云包及其同名命名空间。我是否需要直接转到我的应用程序中的REST API?
您可以使用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)); });