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 logged in, I have access token. I have authorization for app.

I wants to retrieve the user's friends which are using this app(Specific) app. If i am running URL with fql and with access_token in browser then this give me accurate result .. but when running with php code ... no result getting..

$userFrndAppUser  = null;

$c2 = curl_init();

curl_setopt($c2, CURLOPT_URL, "https://graph.facebook.com/fql?q=SELECT uid,name, is_app_user FROM user WHERE uid IN(SELECT uid2 FROM friend WHERE uid1 = me()) AND is_app_user = 1&access_token=".$access_token);

curl_setopt($c2, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($c2, CURLOPT_SSL_VERIFYPEER, false);

curl_setopt($c2, CURLOPT_SSL_VERIFYHOST, false);

$userFrndAppUser = json_decode(curl_exec($c2));

curl_close($c2);

$userFrndAppUser = object2Array($userFrndAppUser);

echo "<br>User's friend which are using this app..";

print_r($userFrndAppUser);


function object2Array($d){
        if (is_object($d)){
            $d = get_object_vars($d);
        }

        if (is_array($d))
        {
            return array_map(__FUNCTION__, $d);
        }
        else
        { 
            return $d;
        }
    }   
share|improve this question
try running urlencode on the fql statement – TommyBs Aug 13 '12 at 8:40
sir. can you please show me a example here.. just as where use in url encode – naresh kumar Aug 13 '12 at 8:41
same problem... – naresh kumar Aug 13 '12 at 8:46
I've updated the answer to reflect CBroe's comment below. Was an oversight on my part – TommyBs Aug 13 '12 at 13:50

1 Answer

As per my comment above:

$fql = urlencode('SELECT uid,name, is_app_user FROM user  WHERE uid IN(SELECT uid2 FROM friend WHERE uid1 = me()) AND is_app_user = 1');

curl_setopt($c2, CURLOPT_URL, "https://graph.facebook.com/fql?q=".$fql."&access_token=".$access_token);

Alternatively, look at using the Facebook php sdk for this https://developers.facebook.com/docs/reference/php/

https://developers.facebook.com/docs/reference/fql/

share|improve this answer
I’d say using urlencode on the whole URL is definitively wrong; it should be used on the value of the q parameter only. – CBroe Aug 13 '12 at 12:03
you're right, and I did actually mean to write that as I've encountered this error before! Edited my answer – TommyBs Aug 13 '12 at 13:49

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.