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 been going crazy with this bug and any help/input would be really appreciated. I am a noob developer and I have been working with my web app that uses the facebook api. I built it on codeigniter and I have some login/logout issues. Mainly logout is spitting out a ton of data after redirect that looks like broken code on the webpage. On login I have to reload the page a few times before I get an actual pull from the api.

I am still new to MVC so its a concept has been difficult to wrap my head around. right now I have my facebook auth sitting on a page in my views and I know thats not the right place for it. Where should I put it?

Here is my code

facebook auth(fbmain.php):

  <?php

    //facebook application
    $fbconfig['appid' ]     = "appid";
    $fbconfig['secret']     = "secret";
    $fbconfig['baseurl']    = "baseurl"; 
    //
    if (isset($_GET['request_ids'])){
        //user comes from invitation
        //track them if you need
    }

    $user=null; //facebook user uid
    try{
        include_once "/facebook-php-sdk/src/facebook.php";
    }
    catch(Exception $o){
        error_log($o);
    }
    // Create our Application instance.
    $facebook = new Facebook(array(
      'appId'  => $fbconfig['appid'],
      'secret' => $fbconfig['secret'],
      'cookie' => true,
    ));

    //Facebook Authentication part
    $user       = $facebook->getUser();
    // We may or may not have this data based 
    // on whether the user is logged in.
    // If we have a $user id here, it means we know 
    // the user is logged into
    // Facebook, but we don’t know if the access token is valid. An access
    // token is invalid if the user logged out of Facebook.


    $loginUrl   = $facebook->getLoginUrl(array('scope'=>'email,offline_access,publish_stream,user_birthday,friends_birthday,user_location,user_work_history,user_about_me,user_hometown',
                'redirect_uri'  => $fbconfig['baseurl']
            )
    );

    $params = array ( 'next' => 'http://birthyday.com/pages/view/gifter');

    $logoutUrl  = $facebook->getLogoutUrl($params);

    if ($user) {
      try {
        // Proceed knowing you have a logged in user who's authenticated.
        $user_profile = $facebook->api('/me');
      } catch (FacebookApiException $e) {
        //you should use error_log($e); instead of printing the info on browser
        d($e);  // d is a debug function defined at the end of this file
        $user = null;
      }
    }


    //if user is logged in and session is valid.
    if ($user){
        //get user basic description
        $userInfo           = $facebook->api("/$user");


        //update user's status using graph api
        //http://developers.facebook.com/docs/reference/dialogs/feed/
        if (isset($_GET['publish'])){
            try {
                $publishStream = $facebook->api("/$user/feed", 'post', array(
                    'message' => "", 
                    'link'    => '',
                    'picture' => '',
                    'name'    => '',
                    'description'=> ''
                    )
                );
                //as $_GET['publish'] is set so remove it by redirecting user to the base url 
            } catch (FacebookApiException $e) {
                d($e);
            }
            $redirectUrl     = $fbconfig['baseurl'] . '/index.php?success=1';
            header("Location: $redirectUrl");
        }

        //update user's status using graph api
        //http://developers.facebook.com/docs/reference/dialogs/feed/
        if (isset($_POST['tt'])){
            try {
                $statusUpdate = $facebook->api("/$user/feed", 'post', array('message'=> $_POST['tt']));
            } catch (FacebookApiException $e) {
                d($e);
            }
        }

        //fql query example using legacy method call and passing parameter
        try{
            $fql    =   "SELECT uid, name, birthday_date FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=me()) AND strlen(birthday_date) > 0";
            $param  =   array(
                'method'    => 'fql.query',
                'query'     => $fql,
                'callback'  => ''
            );
            $fqlResult   =   $facebook->api($param);
        }
        catch(Exception $o){
            d($o);
        }
    }  


    function d($d){
        echo '<pre>';
        print_r($d);
        echo '</pre>';
    }?>

Here is my login.php:

<body>
<?php
    include_once "fbmain.php";
?>  
    </head>
<body>

<div id="fb-root"></div>
    <script type="text/javascript" src="http://connect.facebook.net/en_US/all.js"></script>
     <script type="text/javascript">
       FB.init({
         appId  : '<?=$fbconfig['appid']?>',
         status : true, // check login status
         cookie : true, // enable cookies to allow the server to access the session
         xfbml  : true  // parse XFBML
       });

     </script>

        <?php if (!$user) { ?>
         <h1> Login in with facebook and we will get your friends birthdays for you!</h1>
            <a href="<?=$loginUrl?>">Facebook Login</a>
        <?php } else { ?>
            <a href="<?=$logoutUrl?>">Facebook Logout</a>
        <?php } ?>

        <!-- all time check if user session is valid or not -->
    <?php if ($user){ ?>
        </table>
           <td>
              <div class="box">
         <b>Friend Information</b>
                        <?php d($fqlResult); ?>
                      <?php } ?>

                    </div>
                </td>

        </body>
    </html>

Again I a new to all this but I am trying to learn so if there are any tips you could give that would be great!!!

Thanks for all your time

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.