I can explore my activity log using browser (https://www.facebook.com/help/437430672945092)
I wants to write a app to analyze my facebook data.
Is there any way to get my activity log using GraphAPI or FQL?
I can explore my activity log using browser (https://www.facebook.com/help/437430672945092)
I wants to write a app to analyze my facebook data.
Is there any way to get my activity log using GraphAPI or FQL?
This is possible, but not via a single request of query. It's neccessary to use a combination of both Graph API requests, as well as FQL queries. You'll need the appropriate Access Token Permissions to do this.
All of your Posts:
All of your OpenGraph Actions. This can get lengthy, see the list at https://developers.facebook.com/docs/reference/opengraph Example for the og.likes:
For custom OpenGraph Actions, you have to create the queries depending on the definition of the Actions. See docs here https://developers.facebook.com/docs/opengraph/using-objects#read Sample for Foursquare Checkins:
All of your Object Likes (FQL):
All of your URL Likes (FQL):
All of your Page Likes (FQL):
I'm sure that I forgot some, but I think the message is here that it's not really simple and there's not a "all-in-one" query which can do what you want to achieve.