当我们点击Facebook应用程序观看时,我们可以获取facebook给出的项目列表吗?

时间:2016-02-11 05:32:21

标签: objective-c facebook-graph-api

问题可能无法描述我想要的内容并对此抱歉,所以这是描述。

在facebook中我们的状态,当我们点击观看时,我们会得到一个项目列表,如图所示,想要获取此列表及相关数据(如果可能)。

enter image description here

enter image description here

谢谢

2 个答案:

答案 0 :(得分:0)

这是Opengraph行动video.wants_to_watch

查看文档

使用iOS SDK,示例代码为

// For more complex open graph stories, use `FBSDKShareAPI`
// with `FBSDKShareOpenGraphContent`
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
                               initWithGraphPath:@"/me/video.wants_to_watch"
                               parameters:params
                               HTTPMethod:@"GET"];
                               [request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
                               id result,
                               NSError *error) {
                                  // Handle the result
                             }];

答案 1 :(得分:0)

据我了解这个问题,Anurag希望在已观看Facebook视频时显示复选标记。

图谱API已经提到您可以从Open Graph Reference Documentation获得 video.watches video.wants_to_watch 的列表。

另请参阅此链接https://developers.facebook.com/docs/sharing/opengraph/using-actions#explicitsharing,其中提到了使用 video.watches 操作来显示某人使用您的应用观看了视频。愿这对你有所帮助,让你更清楚! enter image description here