2

如何以編程方式查找我的哪些朋友正在使用我的應用程序使用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

這是facebook-graphy-api應該提供的。我不認爲你需要自己做。 – s84

+0

你可以提供API的鏈接並向我們顯示你存儲在你的數據庫中的任何信息嗎? – s84

+0

但問題是圖形api沒有提供。 – Immo

回答

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實際上是工作!

相關問題