I have the latest PHP SDK for facebook, and I am running the following code:
require_once APPPATH . 'libraries/base_facebook.php';
require_once APPPATH . 'libraries/facebook.php';
$config = array();
$config['appId'] = $this->config->item("facebook_key");
$config['secret'] = $this->config->item("facebook_secret");
$facebook = new Facebook($config);
$user = $facebook->getUser();
if ($user)
{
print_r($user)
}
else
{
$url = $facebook->getLoginUrl(array('scope'=> 'publish_stream,status_update','redirect_uri'=>'https://myurl.com/fb_login'));
echo "<p>Redirecting to permission request...</p>";
echo "<script type=\"text/javascript\">top.location.href = '$url';</script>";
}
A picture of the error: http://i48.tinypic.com/1z4gye9.png
I have read all over the place and this seems common but every solution seems different. I have dumbed it down to the most simple objects and still I am getting that error.
Thanks in advance.
Jonathan