im trying to return the profile picture of a user with the facebook api, but i get an error in chrome about the link. here is the code
FB.getLoginStatus(function(response){
if(response.status=="connected"){
var token=response.authResponse.accessToken;
console.log(token);
FB.api('me/picture?type=square',function(response){
console.log(response);
});
}else{
FB.login(function(response){
console.log(response);
},{scope:"email"});
}
});
});
and the error
Uncaught SyntaxError: Unexpected token ILLEGAL 275226_100002726490078_140247_q.jpg:1
why is this happening? i dont even know where to start looking for a solution, because i dont know where this error is even coming from.
FB.api('me/picture?type=square'are you trying to get the image itself or the link to the image? – jBit Aug 15 '11 at 17:10