I have an application where users can register themselves using Facebook credentials. Now consider for every user I get the permission for offline access.
I know that I can fetch the friends of mine using the Graph API.. For every user registered, I store the fbuid into my database.
Now I'm thinking that as I have my friends who have registered into my application and those users would have permitted my application for offline access. I thought of getting my friends in an array and just find friends of each and every friend in the array and join all of them.. Here the problem is I need to remove the Facebook users who are repeated (may be a friends in too many friend's list) and get a final list of friends of friends..
So can I get the friends of my friend using FQL or Graph API?
I searched/read lots of topics on Stack Overflow by searching for friends of friends, but of no use.
Note: This is not the similar questions already posted on Stack Overflow. Please read fully to understand this question.