FQL to get user's open graph video.watches activity

前端 未结 1 1105
北荒
北荒 2021-01-22 03:02

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 al

相关标签:
1条回答
  • 2021-01-22 03:56

    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/

    0 讨论(0)
提交回复
热议问题