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.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.