Bing の json リクエスト (マップではなく bing 検索) に苦労していると、「ラベルが無効です」というエラーが返されます
私のクエリのURLは次のとおりです。
var bingurl="http://api.search.live.net/json.aspx?Appid=##APIKEY##&query=Honda&sources=web";
$.ajax({
type: "GET",
url: bingurl,
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "jsonp",
success: function(data) {
$callBack(data);
},
error: function(msg) {
alert("error" + msg);
}
});
Firebug は「無効なラベル」を報告し、json 応答をダンプします。
何が悪いのかわからない?助けていただければ幸いです。