Yani Facebook'un API kullanarak bir URL için bağlantı istatistikleri almak öğrenmek için çalışıyorum.
Bu benim burada ne var:
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);
Bu bana boş bir sayfa veriyor. Ben FB Uygulama kayıtlı web sitesinde bu test değilim olabilir mi?
Ben kayboldum.
Thanks, Dan