JSONで結果を返すBing検索リクエストのパラメーターを理解するのに役立ちます。
ドキュメント「BingSearchAPIアプリケーションの移行」には次のように記載されています。
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
JSON形式で検索結果を取得するためにCURLコマンドラインで使用できるBing検索URLの例を挙げてください。