After reading all facebook docs and google search i am posting this question because i unable to find the answer.
- Application A – my application
- Application B – Someone else application
I want to test user’s friends who’s feed contain post by Application B. I just need true or false without fetching their posts. because fetching feeds of every friend is slow and wrong way. is their any way to get list of friends in true or false way. Please suggest any single Graph API or FQL to get list.
thank you. Please help.
No, there is no straight “true/false” query for that.
You could just filter the contents of the FQL
streamtable byapp_idfor each friend, and useLIMIT 1to break the search off when the first post made through that app for that user is found.And of course you could make that a multi-query, to fetch the data for all friends at once, to limit the number of necessary HTTP requests.