Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried to search for comments on keyword using graph API

https://graph.facebook.com/search?q=QUERY that lists for me a very large set of results.

For example: https://graph.facebook.com/search?q=watermelon gives me a large set of results in JSON format over pages.Is there any method to get results which are posted by my friends only.? Thanx in advance.

share|improve this question
Have you read this : developers.facebook.com/docs/reference/api ? – Sorin Trimbitas Jan 2 at 11:52
@TrimbitasSorin yes.I checked it.According to that there isnt any open graph methods to filter friends. Is there any other methods? – Surabhil Sergy Jan 2 at 12:03
Well, if the API itself don't provide a method for this .. you can create it by yourself or find a workaround by mixing different api calls (raw example : get your list of friends, for each of them get comments, filter the results). – Sorin Trimbitas Jan 2 at 12:05

1 Answer

up vote 0 down vote accepted

With Search, you can search over all public objects in the social graph. Since, you are limiting your search to the user's friends, simply use this-

https://graph.facebook.com/me/home?q=watermelon
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.