通过 id 获取特定用户

发布于 2024-10-31 21:47:04 字数 628 浏览 0 评论 0原文

我使用 facebook graph ,当我使用 https://graph.facebook.com/me/likes 时?…… 我得到了所有我的(用户)喜欢,我想要我的粉丝页面的具体喜欢。

我如何通过ID获得具体喜欢

例如有2个喜欢我只想获得113854025316756(Id):

 {
     "name": "Finzit",
     "category": "Application",
     "id": "113854025316756",
     "created_time": "2011-02-15T16:53:41+0000"
  },
  {
     "name": "\u05d0\u05d9\u05d9\u05e4\u05d5\u05df \u05db\u05d7\u05d5\u05dc \u05dc\u05d1\u05df",
     "category": "Local business",
     "id": "228466071396",
     "created_time": "2010-08-28T18:01:21+0000"
  },

谢谢

im using facebook graph , when im using https://graph.facebook.com/me/likes?........
im getting all my(User) likes , i want specific like for my fan page..

how can i get specific like by id

example there are 2 likes i want to get only the 113854025316756(Id):

 {
     "name": "Finzit",
     "category": "Application",
     "id": "113854025316756",
     "created_time": "2011-02-15T16:53:41+0000"
  },
  {
     "name": "\u05d0\u05d9\u05d9\u05e4\u05d5\u05df \u05db\u05d7\u05d5\u05dc \u05dc\u05d1\u05df",
     "category": "Local business",
     "id": "228466071396",
     "created_time": "2010-08-28T18:01:21+0000"
  },

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一刻暧昧 2024-11-07 21:47:04

您可以使用 FQL,如下所示

"SELECT uid, page_id, created_time FROM page_fan 
WHERE page_id='PAGE ID' 
AND uid='USER ID'";

You can use FQL for that, like this

"SELECT uid, page_id, created_time FROM page_fan 
WHERE page_id='PAGE ID' 
AND uid='USER ID'";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文