Show all facebook posts in a list

1

I have numerous profiles and fan pages that I must control the content.

Entering one by one gives a gigantic job. So I'm making this application to show all posts by date order, separated by profile / fan page.

Using Facebook Graph I can retrieve the data from the STREAM table, however these are not enough to mount the complete post (I did not find the links, photos, etc, for example).

I'm trying to get JSON via JSONP like this:

var fburl = "https://graph.facebook.com/xxxxxxxxx";

$.get(fburl, function(data){
    console.log(data);
},'jsonp');

However, return message: "Unsupported get request.".

What is the best way to resolve this?

    
asked by anonymous 11.02.2014 / 14:05

1 answer

2

The problem was in access_token. This worked perfectly:

var fburl = "https://graph.facebook.com/xxxxxxxxx?access_token=yyyyyyyyy";

$.get(fburl, function(data){
    console.log(data);
},'jsonp');
    
11.02.2014 / 16:49