I have created an application which I uses in a website for 'login through facebook' operation. Now this website has so many users who used to login through facebook. I want to retrieve only those friends who also use this app using facebook graph api version 2.2 only. I don't need any FQL query. As I found out lot of queries from stackoverflow, so I tried this following queries:
https://graph.facebook.com/v2.2/me/friends?fields=installed
but this only returns total fb friends count.
{
"data": [
],
"summary": {
"total_count": 768
}
}
I also set the application access_token 'Graph API Explorer' to my application 'newAPP' but no result. Please help.