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 te below code to update user status in facebook.It was workinng fine 2 months before .Now the problem is after login in the facebook using the app it takes too much time to load nd error message comes like "This webpage has a redirect loop". Please give a idea to make tis code work

 <?php
 //include the Facebook PHP SDK
 include_once 'facebook.php';

 //instantiate the Facebook library with the APP ID and APP SECRET
 $facebook = new Facebook(array(
  'appId' =>'id',
    'secret' =>'xyz',
    'cookie' => true
 ));
 $user = $facebook->getUser();

 if($user) {

    //do stuff when already logged in
 if( session_id() ) 
 {

 } else {
    session_start();
 }

 $access_token = $facebook->getAccessToken();

 $permissions_needed = array('publish_stream', 'read_stream', 'offline_access', 'manage_pages');
 foreach($permissions_needed as $perm) {
    if( !isset($permissions_list['data'][0][$perm]) || $permissions_list['data'][0]     $perm] !            =      1 ) {
       $login_url_params = array(
     'scope' => 'publish_stream,read_stream,manage_pages',
     'fbconnect' =>  1,
     'display'   =>  "page",
     'next' => 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']
    );
    $login_url = $facebook->getLoginUrl($login_url_params);
     header("Location: {$login_url}");
    exit();
    }
  }
   $accounts = $facebook->api(
  '/me/accounts',
     'GET',
  array(
  'access_token' => $access_token
   )
 );
    $parameters = array(
     'message' =>'hi ansari.....',  
      'link' =>'www.yahoo.com',
    'name' =>"vijesh",
    'caption' =>'',
    'description' =>"mydescription"
   );



   $newpost = $facebook->api(
 '/me/feed',
  'POST',
  $parameters
  );

   } 
    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);

           //redirect to the login URL on facebook
        header("Location: {$login_url}");
         $accounts = $facebook->api(
       '/me/accounts',
      'GET',
          array(
            'access_token' => $access_token
          )
       );


    $parameters = array(
  'message' =>'Hi gud evening',  
  'link' =>'www.yahoo.com',
 'name' =>"vijesh",
 'caption' =>'my Try',
 'description' =>"mydescription"
  );



    $newpost = $facebook->api(
     '/me/feed',
      'POST',
        $parameters
   );

      exit();
    }
   ?>

Thnks in advance

share|improve this question
1  
Most probably $user is null even after login, thus a redirect loop. – Jashwant Sep 24 '12 at 6:18
Might be an API Change issue ! :( – Vijay Sarin Sep 24 '12 at 6:46
From what I can see, even if you authenticate yourself you're still being redirected $login_url Take a look at the lines after $access_token = $facebook->getAccessToken(); – dythffvrb Sep 24 '12 at 7:01

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.