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. Does anyone know what's going on?

share|improve this question

2 Answers

up vote 0 down vote accepted

You are encoding + when you don't need to do so.

So your query in PHP is actually http://graph.facebook.com/search?q=watermelon%2Bbanana&type=post&limit=10

leave out the urlencode function

$q = "watermelon+banana" ;

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

So the full code looks like

<?php

require 'facebook.php';

$facebook = new Facebook(array(
    'appId' => 'YOUR_APP_ID',
    'secret' => 'YOUR_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);
    }
}

?>
share|improve this answer
thanks for your response, unfortunately I still get the same result: an empty data object. When using your answer with just a single word like "watermelon" it works just fine. Something wrong with my PHP configuration maybe? – naschans Nov 27 '12 at 11:47
@naschans most likely, the above works for me. – phwd Nov 27 '12 at 11:59
I tried it on a different machine, but still without any result. Are there any configurations of the sdk I have to tweak? – naschans Nov 27 '12 at 12:17
@naschans look for line 924 or so in base_facebook.php, after $opts[CURLOPT_URL] = $url; add echo $url; and see what url is actually being built. – phwd Nov 27 '12 at 12:25
when adding the echo it gives: graph.facebook.com/… – naschans Nov 27 '12 at 12:33
show 4 more comments

You're code should just work fine now (have made all the necessary changes):

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

$q = "watermelon banana"; // dont need to urlencode the string

$q = str_replace(" ","+",$q); // this will replace all occurances of spaces with +

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

foreach ($search as $key=>$value) {
  foreach ($value as $fkey=>$fvalue) {
    print_r ($fvalue);
  }
}
share|improve this answer
I tried this, but it still gives me back an empty object {"data":[]} ... when I try it with just "watermelon" it works fine however. – naschans Nov 27 '12 at 11:38

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.