3

Alchemy Data news Api は、複数のキーワードを実行しても結果を提供しません。一方、単一のキーワードで実行すると問題なく実行されます。

URL は次のとおりです。

https://access.alchemyapi.com/calls/data/GetNews?apikey=YOUR_API_KEY_HERE&return=enriched.url.title,enriched.url.url,enriched.url.entities,enriched.url.docSentiment,enriched.url.concepts,enriched.url.taxonomy&start=1457568000&end=1458255600&q.enriched.url.text=apple%20clean%20technology&count=25&outputMode=json

結果:

{
    "status": "OK",
    "usage": "By accessing AlchemyAPI or using information generated by AlchemyAPI, you are agreeing to be bound by the AlchemyAPI Terms of Use: http://www.alchemyapi.com/company/terms.html",
    "totalTransactions": "191",
    "result": {
        "status": "OK"
    }
}

複数のキーワードの結果を取得するには、他のパラメーターを含める必要がありますか? クエリ ビルダーのデモを使用しているだけなのでしょうか。そして、それはプログラムで可能になる可能性があります。

4

1 に答える 1

3

「and」検索で使用する場合

A[apple^clean^technology]

またはあなたの例のコンテキストで:

https://access.alchemyapi.com/calls/data/GetNews?apikey=YOUR_API_KEY_HERE&return=enriched.url.title,enriched.url.url,enriched.url.entities,enriched.url.docSentiment,enriched.url.concepts,enriched.url.taxonomy&start=1457568000&end=1458255600&q.enriched.url.text=A[apple^clean^technology]&count=25&outputMode=json

詳細については、こちらのドキュメントのパラメーター (フィルター) セクションを参照してください。

私は IBM Watson の開発者エバンジェリストです。

于 2016-03-21T19:45:25.533 に答える