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 am using Graph api to communicate with facebook. I am getting browser error like This webpage has a redirect loop.This is my code. Please give suggestion to fix this

<?php

    include_once 'facebook.php';
    $facebook = new Facebook(array(
    'appId' => '3896949210XXXX',
    'secret' => 'c85b7e0f7XXXXXXXXd3a614aecaf',
    'cookie' => true
      ));

        $user = $facebook->getUser();

    if($user) 
    {

    }

    else
    {
        $login_url_params = array(
         'scope' => 'publish_stream,read_stream,manage_pages',
         'fbconnect' =>  1,
         'redirect_uri' => 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']
        );
        $login_url = $facebook->getLoginUrl($login_url_params); 

        header("Location: {$login_url}");
        exit();
     }

?>
share|improve this question
did u solved this problem? – illDev Mar 22 at 15:27

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.