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 am using the Facebook php sdk v3.2.0, and am only getting an empty data set returned when searching for posts using an AND query like: watermelon+banana. I am currently running this script from the commandline, if that makes any difference:

$facebook = new Facebook(array(
 'appId' => 'MY_APP_ID',
 'secret' => 'MY_SECRET',
));

$q = "watermelon+banana" ;

$search = $facebook->api('/search?q='.$q.'&type=post&limit=10');

foreach ($search as $key=>$value) {
  foreach ($value as $fkey=>$fvalue) {
    print_r ($fvalue);
 }
}

When just going to http://graph.facebook.com/search?q=watermelon+banana&type=post in my browser, I can see the results. Also, when querying $q="watermelon" it does work. I've tried this on different machines but also no dice.

Also: when trying to just use CUrl or file_get_contents, I also get an empty result object for: https://graph.facebook.com/search?q=watermelon%20banana&type=post

Does anyone know what's going on?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.