在 Facebook Group Graph API 结果中解析/查找结果? PHP

发布于 2024-10-09 19:00:08 字数 365 浏览 3 评论 0原文

我在变量中有一个 Facebook 用户的 ID,假设是 $fbid。检查他们是否在某个 Facebook 群组中的最有效方法是什么?

我更喜欢使用 Group Graph API 来检查它。我现在可以以 JSON 格式获取它,但我不知道如何检查 ID 是否在其中。

这是 JSON 的链接

I have a Facebook users' ID in a variable, let's say $fbid. What would be the most efficient way to check to see if they are in a certain Facebook Group?

I'd prefer to check it using the Group Graph API. I can get it in JSON at the moment, but I'm not sure how to check and see if the ID is in it.

Here's the link to the JSON

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

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

发布评论

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

评论(1

ζ澈沫 2024-10-16 19:00:08

我认为您将不得不使用 FQL。使用 FQL,您可以查询 group_member 表:

SELECT * FROM group_member WHERE uid = USER_ID AND gid = GROUP_ID

I think you're going to have to use FQL. Using FQL you can query the group_member table:

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