How do I find friends activity within app?
I'd like to do something like this: https://graph.facebook.com/me/friends/news.reads
I can find my friends in the app with this: me/friends?fields=installed,name?limit=5000 then pull out the friends with the 'installed' field.
Then I can query each friend by id to get their activity: /news.reads
But is there some way to combine this query? It seems like I'm jumping through hoops to get the info I want.
Basically what I'm looking to do, is if I have a URL, find my friends who've read it, and display the last friend.
The 'fb-activity' widget does something similar, but I need more granular control, and I want to do it for a list of URLs, not just the current page.
Any suggestions?