How to find only facebook app installed friends? -


i using app on facebook, want find out list includes friends installed same app in there facebook rather whole friend list. using graph api call

making graph api call to:

me/friends?fields=installed,name 

this give entire list of friends current user, however, include additional field called installed. if set true, means friend has installed app. you'll have go through list , filter out has "installed": true

alternatively, can use following fql query:

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

Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -