これはjsonオブジェクトを返します
http://developer.echonest.com/api/v4/artist/search?api_key=youAPIKey&name=radiohead
私はこの方法を試しましたが、うまくいきませんでした。
function cc() {
jQuery.ajax({
url: "http://developer.echonest.com/api/v4/artist/search?api_key=APIKey&name=radiohead",
type: "POST",
dataType: "json",
async: false,
success: function (data) {
console.log(data);
}
});
}
この URL を呼び出して、Java スクリプトまたは jquery を使用してオブジェクトの値にアクセスするにはどうすればよいですか。