我正在使用 Jquery 将 JSON 数据发送到 Grooveshark API 以获取搜索结果,但这是我得到的结果 -
{"errors":[{"code":2,"message":"Method not found."}]}
这是触发grooveshark API的一段代码。我无法弄清楚这个问题,任何帮助都会很棒。
$.ajax({
type: "POST",
url: 'http://api.grooveshark.com/ws3.php?sig=secret_code',
data: {
"method":"getSongSearchResults",
"header":{"wsKey":"secret_key"},"parameters":{"query":"megadeth hangar 18","country":"1","limit":"2","offset":""}
},
dataType: 'jsonp',
crossDomain: true,
async: false,
success: function () {
alert("success!");
}
});