1

現在、watson-developer-cloud Node.js SDK を使用して Node.js を操作していますが、エンティティーを含むクエリを送信するときに問題が発生します。

これは私のコードです:

// require watson's node sdk and fs
var watson = require('watson-developer-cloud');
var fs = require('fs');

// Define output file
var outputJSONFile = '/home/vagrant/Desktop/node/dir/data.json';

// Create alchemy_data_news object using our api_key
var alchemy_data_news = watson.alchemy_data_news({
  api_key: ''
});

// Define params for the query and what values to return
// Accepted returne values:
// docs.alchemyapi.com/v1.0/docs/full-list-of-supported-news-api-fields
var params = {
  start: 'now-1m',
  end: 'now',
  count: 2,
  qs: ['q.enriched.url.enrichedTitle.entities.entity.text=apple'],
  return: ['enriched.url.url,enriched.url.title']
};

// Call getNews method and return json
alchemy_data_news.getNews(params, function (err, news) {
  if (err) {
    console.log('error:', err);
  } else {
    fs.writeFile(outputJSONFile, JSON.stringify(news, null, 2), function(err)   {
      if (err) {
        console.log('WriteFile Error:', err);
      } else {
        console.log("JSON saved to " + outputJSONFile);
      }
    });
  }
});

paramsオブジェクトを使用してエンティティ パラメータを送信する方法をまだ見つけようとしています。

いくつかのコードを掘り下げているときにqsに出くわしたので、それを使用してテストしましたが、まったく成功していません。

どんな提案でも大歓迎です。

PS: 私は合格しようとしています:
q.enriched.url.enrichedTitle.entities.entity.text=apple q.enriched.url.enrichedTitle.entities.entity.type=company

4

1 に答える 1

2

AlchemyDataNewsのnode-sdk ソース コードを見ると、トップ レベルのパラメーターがクエリ文字列として送信されていることがわかります。
次に、paramsマップは次のようになります。

var params = {
  start: 'now-1m',
  end: 'now',
  count: 2,
  return: ['enriched.url.url,enriched.url.title'],
  // fields here 
  'q.enriched.url.enrichedTitle.entities.entity.text': 'apple',
  'q.enriched.url.enrichedTitle.entities.entity.type': 'company'
};
于 2016-04-07T22:33:45.300 に答える