FQL 获取用户的开放图 video.watches 活动
FQL 中需要什么表才能获取用户的所有 video.watches 活动?我找不到有关此信息存储在哪个表中的文档。一个示例也会有所帮助。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此数据无法通过 FQL 获取,目前只能通过 Graph API 获取。
获得 user_actions.video 和/或friends_actions.video 后,您可以通过
/video.watches
端点访问观看活动。例如,如果您拥有用户的user_actions.video
权限并希望获取他们的观看活动,您可以将访问令牌传递给/me/video.watches
检索用户手表的端点。相关文档:https://developers.facebook.com/docs/beta/authentication/read /
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/