I’m using the Facebook Graph Api to load all friends of the current user of my Facebook App, but I actually only want the females. The only solution to that I have found till now is to loop over all the friends and do a Graph-call for every single friend (uid).
But this takes AGES! (+/- 1 second per friend, so 200 seconds for someone with 200 friends..) Is there a way to get the friends gender quicker?
https://graph.facebook.com/?ids=123456,464566,1222333&fields=name,gender&access_token=aaaaaaa|asdadasdadasdasd.1-565073384|sdfsdfiouuoiUIOIUoiuUI
Here is the documentation:
http://developers.facebook.com/docs/reference/api/
Whole thing including 2 calls will take around 2-5 seconds at max.