2016-03-21 12 views
3

Alchemy Veri haberleri Birden çok anahtar kelime çalıştırırken Api hiçbir sonuç vermiyor. Tek bir anahtar kelimeyle çalışırken iyi çalışıyor.Birden fazla anahtar kelime için sonuçlar al Alchemy Data news Api

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 

sonuç:

{ 
    "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" 
    } 
} 

i çoklu anahtar kelimeler için sonuç almak için başka bir parametresinin dahil etmek gerekiyor burada

URL'dir. Bunun nedeni, yalnızca sorgu oluşturucu demosu kullanıyorum. Programsal olarak da mümkün olabilir. İçin

cevap

3

bir "ve" kullanımı

A[apple^clean^technology] 

veya örnek bağlamında arama:

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 

Parametreleri (filtreler) docs here bölümünde daha bakın.

IBM Watson ile birlikte bir Geliştirici Evangelistiyim.