提取facebook好友的点赞数据

Extracting friends' likes data of facebook

我正在制作一个工具,可以使用朋友的数据预测某个 post 的喜欢程度,喜欢使用信息检索和机器学习,但为此我需要 data.Can 任何人帮助我如何获取我朋友的数据 likes.I 只想提取哪个朋友喜欢哪个 post?

很简单。只需使用 user_friends 等特定权限登录您的网站(现在您可以在 graph api 资源管理器中尝试)然后您可以使用以下代码找到您朋友的任何帖子的赞:

FB.api(
  '/me',
  'GET',
  {"fields":"id,name,friends{likes,name}"},
  function(response) {
      // Insert your code here
  }
);

现在,您可以在图 api 资源管理器中尝试以下查询,并检查这是否是您想要的:

me?fields=id,name,friends{likes,name}