是否有用于访问Alchemy Data News API的javascript/Node.js库



我在GitHub上查看了watson开发者云包及其同名命名空间。我是否需要直接转到我的应用程序中的REST API?

您可以使用watson-developer-cloud npm模块访问所有Watson和Alchemy API。

  1. 安装npm模块。

    $ npm install watson-developer-cloud
    
  2. 从Bluemix获取Alchemy API密钥。

  3. 创建一个内容低于的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));
    });
    

相关内容

  • 没有找到相关文章