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.

So I'm trying to learn how to get link stats for a URL using Facebook's API.

This is what I have here:

    require "application/libraries/facebook.php";

    // Create our Application instance (replace this with your appId and secret).
    $facebook = new Facebook(array(
      'appId'  => 'APP ID WAS HERE',
      'secret' => 'SECRET IS A SECRET',
      'cookie' => true,
    ));

    $fql    =   'SELECT total_count FROM link_stat WHERE url=\"http://google.com\"';
    $param  =   array(
        'method'    => 'fql.query',
        'query'     => $fql,
        'callback'  => ''
    );  
    $fqlResult   =   $facebook->api($param);

That's giving me a blank page. Could it be that I'm not testing this on the website registered with the FB Application?

I'm lost.

Thanks, Dan

share|improve this question

1 Answer

use facebook fql console to verify that your fql statement actually works, (say here: http://developers.facebook.com/docs/reference/rest/links.getstats )

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.