请帮助找出以 JSON 格式返回结果的必应搜索请求的参数。
文档“迁移 Bing 搜索 API 应用程序”告诉我们:
To authenticate a Bing Search API request with Windows Azure Marketplace, you must obtain an account key. This mode of authentication replaces the AppID used in the Bing Search API 2.0.
另一方面,同一文档提供了以下仍然使用 Appid 的示例:
http://api.search.live.net/xml.aspx?Appid=App&query=odata&sources=web&count=2
以下请求:
curl "https://api.datamarket.azure.com/Data.ashx/Bing/SearchWeb/v1/Web?Query=%27xbox%27&$top=50&$format=json$accountKey=TPP....VRTWiq4=$Appid=conceptor"
导致以下错误:
The authorization type you provided is not supported. Only Basic and OAuth are supported
请给出一个 Bing 搜索 URL 的示例,该 URL 可用于 CURL 命令行以获取 JSON 格式的搜索结果。