Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What table is needed in the FQL to get all of a user's video.watches activity? I can find no documentation about what table this information is stored in. An example would also be helpful.

share|improve this question
I hardly believe Facebook provides such information via FQL or Graph API... – Juicy Scripter Dec 19 '11 at 22:06

1 Answer

up vote 6 down vote accepted
+50

This data is not available via FQL, it is currently only available via the Graph API.

Once you have the user_actions.video and/or friends_actions.video you access the watch activity via the /video.watches endpoint. For example, if you have the user_actions.video permission for the user and want to get their watch activity, you would pass in the access token to the /me/video.watches endpoint to retrieve the user's watches.

Relevant documentation: https://developers.facebook.com/docs/beta/authentication/read/

share|improve this answer
This is for user actions that application published (if "all activity" means activity within application than this is the right answer). – Juicy Scripter Dec 21 '11 at 10:28
Actually it's a little more complicated than that. Since read/watch/listen are within the global namespace, any "watch" activity from any app that is publishing actions can be retrieved via this call. Users own their actions that they can share with other apps. Note on the documentation site the bit about "Built In Verticals" – Jeff Sherlock Dec 21 '11 at 14:19
2  
what would be the best way to get all of a user's friends' watches activity? – John Oleynik Dec 23 '11 at 20:37
also, can you request these permissions using authenticated referrals? the box does not seem to let me input these. – John Oleynik Dec 23 '11 at 20:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.