使用应用程序寻找朋友

发布于 2024-11-25 18:06:41 字数 252 浏览 1 评论 0原文

如何通过 Mogli 或 Facebooker2 以编程方式查找我的哪些朋友正在使用我的应用程序。

如果唯一的方法是使用 FQL 有人可以提供一个例子吗?

我认为下面的代码能够找到

select uid, name, is_app_user from user where uid in (select uid2 from friend where uid1=me()) and is_app_user=1

How to programmatically find which of my friends are using my application using Mogli or Facebooker2.

If the only way is to use FQL can someone provide an example?

I think the code bellow is able to find the

select uid, name, is_app_user from user where uid in (select uid2 from friend where uid1=me()) and is_app_user=1

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

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

发布评论

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

评论(1

じее 2024-12-02 18:06:41

刚刚测试:

https://api.facebook.com/method/fql.query?query=select+uid%2C+name%2C+is_app_user+from+user+where+uid+in+%28select+uid2+from+friend+where+uid1%3Dme%28%29%29+and+is_app_user%3D1%0A
&access_token=YOUR_ACCESS_TOKEN
&format=json

并且返回正确的结果,因此 FQL 实际上正在工作!

Just tested:

https://api.facebook.com/method/fql.query?query=select+uid%2C+name%2C+is_app_user+from+user+where+uid+in+%28select+uid2+from+friend+where+uid1%3Dme%28%29%29+and+is_app_user%3D1%0A
&access_token=YOUR_ACCESS_TOKEN
&format=json

And is returning the correct results so FQL is actually working!

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