如何使用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
答案 0 :(得分:0)
刚刚测试过:
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实际上正在工作!