Bing新闻搜索API:使用“新鲜度”查询参数

时间:2018-10-08 21:35:02

标签: bing bing-api bing-search

以下内容演示了我如何尝试通过python在Bing News Search API中使用Freshness参数。

freshness = "2018-09-15..2018-09-16"
search_url = "https://api.cognitive.microsoft.com/bing/v7.0/news/search"
headers = {"Ocp-Apim-Subscription-Key" : subscription_key}
params  = {"q":term, "textDecorations":True, "textFormat":"HTML","freshness=&#39":freshness}
response = requests.get(search_url, headers=headers, params=params)

它以这种方式运行,并返回结果,但是实际上它们都不在通过freshness参数传递的时间范围内。

知道我在做什么错吗?

0 个答案:

没有答案