以下内容演示了我如何尝试通过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='":freshness}
response = requests.get(search_url, headers=headers, params=params)
它以这种方式运行,并返回结果,但是实际上它们都不在通过freshness参数传递的时间范围内。
知道我在做什么错吗?