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
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:
Using this interface you could subscribe to updates for when a user’s friends change for example by sending a POST request to:
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.