我想简单地使用 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
有谁知道我的错误在哪里?