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.
相关问题
- facebook error invalid key hash for some devices
- LoginActivty with Firebase & Facebook authenticati
- facebook “could not retrieve data from URL”
- setRequestHeader Content-Type causes POST request
- Sharing to Facebook Stories
相关文章
- Facebook login for group members
- The method FB.api will stop working when called fr
- React native deep linking vs Facebook SDK conflct
- UIActivity with no settings for Facebook
- facebook send API Error Code: 100 API Error Descri
- Can't use Facebook Account Kit: Error inflatin
- Facebook API error subcode 33
- Devise + Omniauth: undefined method `user_omniauth
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 theuser_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/