I'm trying to get JSON data from facebook using the following code:
var getFriends = function() {
var friendsURL = 'https://graph.facebook.com/<?= $cookie['uid'] ?>/friends?access_token=<?= $cookie['access_token'] ?>&jsoncallback=?';
$.getJSON(friendsURL, function(data) {
var names = "";
$.each(data.name, function(){
names += " " + this;
});
alert("JSON Data: " + names);
});
}
Every time I run the function I get this error in Chrome: "Uncaught SyntaxError: Unexpected token :"
Any ideas? I made sure to put "jsoncallback=?" at the end of the url to make it return as JSONP but I've run out of solutions now.
Thanks, -Ben