JQueryを使用してTwitterのプロフィール写真のURLを取得したいだけです
そのために私は使用します:
$.ajax({
type: "GET",
url: "https://api.twitter.com/1/users/profile_image/twitterapi.json",
dataType: "jsonp",
success: function(data){
console.log('success');
},
error: function(data){
console.log('error');
}
});
しかし、私はこのエラーを受け取ります
Uncaught SyntaxError: Unexpected token ILLEGAL
誰かが私の間違いがどこにあるか知っていますか?