I'm using Eclipse FDT to write a Flex application for facebook on a facebook page. I want to be able to fetch the friends list of that same user and to distinguish between friends who installed the app and friends who didn't.
I searched on stackoverflow and I saw that users did that using the old REST API, the question is can I do that with graph api ?
if it's not possible using graph api at all... so how to do with REST API ?! :)
with the following request:
https://graph.facebook.com/me/friends?access_token?XXX
I can fetch the list of friends of that user. but it doesn't provide a flag if my app is installed. what can I do exactly and how ?!
Thanks!