私は Facebook API が初めてで、現在、ユーザーの友達リストを変数で取得しようとしています。
これは私のコントローラー内にあるコードです:
$accept = $this->isAcceptApp($this->app_secret);
$this->view->accept = $accept;
$facebook = new Facebook(array(
'appId' => $this->app_id,
'secret' => $this->app_secret,
'cookie' => true,
));
$session = $facebook->getSession();
if ($session) {
$friends = $facebook->api('/me/friends');
コントローラーの上部にこれがあります:
require_once("facebook.php");