Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't seem to find the definitive word out there of the facebook search api: the api that allows you to search public status updates and comments/posts (there is a web interface for all logged in users for this at the moment).

share|improve this question

2 Answers

up vote 51 down vote accepted

You can use the Facebook graph API :

http://developers.facebook.com/docs/reference/api/

look for the searching section,

QUOTE from fb:

Searching

You can search over all public objects in the social graph with https://graph.facebook.com/search. The format is:

https://graph.facebook.com/search?q=QUERY&type=OBJECT_TYPE We support search for the following types of objects:

All public posts: https://graph.facebook.com/search?q=watermelon&type=post

You can also search an individual user's News Feed, restricted to that user's friends, by adding a q argument to the home connection URL:

share|improve this answer
Thanks a lot, I have already given up searching for this on their API ref page :) – Elland Jul 17 '12 at 16:34
Does using this API require registration of some sort? Or do you just use it just like that , without doing anything special? – android developer May 2 at 9:34
@androiddeveloper Yes you need to register your fb application in developers.facebook.com to get your secret key – Jarod Law Ding Yong May 2 at 13:27
so it's not quite public, and anytime they wish, they can shut down the service specifically for your app. – android developer May 2 at 13:35

More Better way using Facebook PHP SDK

-> Search any term using facebook php sdk.

$mySrch = $facebook->api('/search?q=YOUR WORD&type=TYPES');

THERE ARE VARIOUS TYPES, you can search:

  1. post
  2. user
  3. event
  4. group
  5. place
  6. checkin
share|improve this answer
2  
this is the same answer as above, it's just that the above it more general. also your answer could be considered wrong since the user didn't specify that they want to use php – Slim Fadi Feb 24 at 11:41

protected by Community Aug 19 '12 at 7:13

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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