Cannot get a session with Facebook app? (using its Graph API)
- by Jian Lin
I have really simple few lines of Facebook app, using the new Facebook API:
<pre>
<?php
require 'facebook.php';
// Create our Application instance.
$facebook = new Facebook(array(
'appId' => '117676584930569',
'secret' => '**********', // hidden here on the post...
'cookie' => true,
));
…