I finally managed to get data from facebook!
But I have a problem displaying the data, I hope someone can help me 🙂

If I want to get the id for example. Wouldn’t it be something like this?
$(document).ready(function() {
$.getJSON("https://graph.facebook.com/neonlachs/feed?access_token=173359892783474%7Cz-fqFn6DBGIbHfvRT7eQ88v9Uts&callback=?", function(facebookdata) {
$.each(facebookdata, function(i,face) {
console.log(face.json.data[i].id)
});
});
});
The information you’re trying to get is within the data object, not the entire set of data returned within the JSON. You need to specify facebookdata.data as the array to want to iterate over.