Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an API to retrieve Facebook recent activity?

I know there's a Graph api url for getting the recent wall feeds:

https://graph.facebook.com/me/feed?access_token=...

But how do I get the Recent Activity? Is there any way? FQL (not Graph API) can work too. I don't really care which way I get it.

I'm trying to get the RECENT ACTIVITY, which appears as part of the wall. It has same IDs like the standard wall entries have, but they aren't returned in the /me/feed request, because they are treated differently on facebook, and I'm trying to find out a simple way to get them just like /me/feed

like image 888
Alex K Avatar asked Jul 12 '11 11:07

Alex K


3 Answers

There isn't a single social plugin or a single API endpoint that provides exactly what you are describing, but what you can do is subscribe to Real-time Updates, check out the docs on it here:

https://developers.facebook.com/docs/reference/api/realtime/

Using this interface you could subscribe to updates for when a user's friends change for example by sending a POST request to:

graph.facebook.com/[app-id]/subscriptions?access_token=...&object=user&fields=user$callback_url=...

As the documentations notes, not everything is available via Real-time Updates, but hopefully this gets you pretty close to the functionality that you are looking for.

like image 177
squinlan Avatar answered Oct 12 '22 17:10

squinlan


Yes. Read Facebook's post: Recent Activity stories now exposed via FQL and Graph API.

like image 41
ma11hew28 Avatar answered Oct 12 '22 17:10

ma11hew28


Are you looking for something like what Facebook itself displays in the "notifications" This FQL query should do the trick.

FB.api( {
            method : 'fql.query',
    query : 'SELECT notification_id, sender_id, title_html, body_html, href FROM notification WHERE recipient_id=me()'
        }, function(response){console.log(response);});

A list of available fields is here.

I like to use the Chrome console to explore the data structures that Facebook returns, thus the "console.log" call. Obviously you will need to provide your own callback...

Note that this will require a special permission ("manage_notifications") starting in October as outlined here.

like image 1
Nathan Labenz Avatar answered Oct 12 '22 17:10

Nathan Labenz