查找用户的哪些朋友喜欢 facebook“PAGE”

发布于 2024-12-18 06:46:48 字数 560 浏览 2 评论 0原文

我有一个 Facebook 页面和几个为其构建的应用程序,显然该页面的粉丝很少。

我想知道当前登录用户(已经是我的粉丝)的哪些好友也是我的粉丝,即找出当前用户的好友列表中有多少用户是我的页面的粉丝。

我尝试过使用 friends.getappusers,但它已被弃用。

FQL:

SELECT uid FROM user
WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = ?)
AND is_app_user = 1

--又是一个应用程序用法。

旧 API:$facebook->api_client->friends_getAppUsers();

图 API:$facebook->api(array('method' => 'friends.getAppUsers') );

我知道应用程序可以做到这一点..但这不会有帮助,我希望页面喜欢被测量,而不是应用程序喜欢或使用情况..

I have a Facebook page and few apps built for it, and obviously have few fans of the page.

I'd like to know which friends of the currently logged in user (who is already my fan) are also my fan, i.e. find out how many users in current user's friend list are fans of my page.

I've tried to use friends.getappusers, but its deprecated.

FQL:

SELECT uid FROM user
WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = ?)
AND is_app_user = 1

--again an app usage.

OLD API: $facebook->api_client->friends_getAppUsers();

GRAPH API: $facebook->api(array('method' => 'friends.getAppUsers'));

I Know an app can do this.. but that wont help, I want the page to likes to be measured and not the app likes or usage..

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文