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.

The following code work perfectly on chrome and IE but when i tested it with firefox, it return me an error of "An error occured, Please try again later". May i know what is the problem in the code and below are the code related to facebook api.

$user_id = $facebook->getUser();
if ($user_id) {
  try {
    // Fetch the viewer's basic information
    $basic = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    // If the call fails we check if we still have a user. The user will be
    // cleared if the error is because of an invalid accesstoken
    if (!$facebook->getUser()) {
      header('Location: '. AppInfo::getUrl($_SERVER['REQUEST_URI']));
      exit();
    }
  }
if (check_user($user_id,$promo) && check_friend($user_id)>0){ 
    header('Location: Thankyou.php');
}
if (!check_promo()){
    header('Location: Thankyou.php');
}


// Fetch the basic info of the app that they are using
$app_info = $facebook->api('/'. AppInfo::appID());
$app_name = idx($app_info, 'name', '');
?>


<!DOCTYPE html>
<html xmlns:fb="http://ogp.me/ns/fb#" lang="en">
  <head>
    <script type="text/javascript">
      function logResponse(response) {
        if (console && console.log) {
          console.log('The response was', response);
        }
      }



     //Perhaps the problem come from here
      $(function(){
        // Set up so we handle click on the buttons
        $('#postToWall').click(function() {
          FB.ui(
            {
              method : 'feed',
              link   : $(this).attr('data-url')
            },
            function (response) {
              // If response is null the user canceled the dialog
              if (response != null) {
                logResponse(response);
              }
            }
          );
        });

        $('#sendRequest').click(function() {
          FB.ui(
            {
              method  : 'apprequests',
              message : $(this).attr('data-message')
            },
            function (response) {
              // If response is null the user canceled the dialog
              if (response != null) {
                var request_ids = [];
                var friend_ids = [];
                for(i=0; i<response.to.length; i++) {
                    //var temp = response.to[i] + '_' + response.to[i].name;
                    request_ids.push(response.request);
                    friend_ids.push(response.to[i]);
                }
                var requests = request_ids.join(',');
                var friends = friend_ids.join(',');
                $.post('friend_handler.php',{uid: <?php echo $user_id; ?>, fid: friends, rid: requests},function(resp) {
                    });
              }
            }
          );
        });
      });
    </script>

<?php $caption = "Hello";
$description = "Byebye";
?>
<script> 
      FB.init({appId: "<?php echo AppInfo::appID(); ?>", status: true, cookie: true});
      function postToFeed() {
        // calling the API ...
        var obj = {
          method: 'feed',
          link: 'http://apps.facebook.com/mas-amazing-journey/',
          picture: 'http://www.xman.com/content/mas-admin/my/en/site-configuration/homepagethreatre/book/AmazingWorldwideDeals/_jcr_content/contentpar/masimage_9126.img.jpg/1339349457238.jpg',
          name: 'Amazing Journey',
          caption: '<?php echo $caption; ?>',
          description: '<?php echo $description; ?>'
        };
        function callback(response) {
          document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
        }
        FB.ui(obj, callback);
      }
    </script>
    <!--[if IE]>
      <script type="text/javascript">
        var tags = ['header', 'section'];
        while(tags.length)
          document.createElement(tags.pop());
      </script>
    <![endif]-->
    <script src="//connect.facebook.net/en_US/all.js"></script>



  </head>
<body>
<header class="clearfix">
        <div id="fb-root"></div>
            <script type="text/javascript">
      window.fbAsyncInit = function() {
        FB.init({
          appId      : '<?php echo AppInfo::appID(); ?>', // App ID
          channelUrl : '//<?php echo $_SERVER["HTTP_HOST"]; ?>/channel.html', // Channel File
          status     : true, // check login status
          cookie     : true, // enable cookies to allow the server to access the session
          xfbml      : true // parse XFBML
        });

        // Listen to the auth.login which will be called when the user logs in
        // using the Login button
        FB.Event.subscribe('auth.login', function(response) {
          // We want to reload the page now so PHP can read the cookie that the
          // Javascript SDK sat. But we don't want to use
          // window.location.reload() because if this is in a canvas there was a
          // post made to this page and a reload will trigger a message to the
          // user asking if they want to send data again.
          window.location = window.location;
        });

        FB.Canvas.setAutoGrow();
      };

      // Load the SDK Asynchronously
      (function(d, s, id) {
        var js, fjs = d.getElementsByTagName(s)[0];
        if (d.getElementById(id)) return;
        js = d.createElement(s); js.id = id;
        js.src = "//connect.facebook.net/en_US/all.js";
        fjs.parentNode.insertBefore(js, fjs);
      }(document, 'script', 'facebook-jssdk'));
    </script>
      <?php if (isset($basic)) { ?>
        <p id="picture" style="background-image: url(https://graph.facebook.com/<?php echo he($user_id); ?>/picture?type=normal)"></p>

        <h1>Welcome, <strong><?php echo he(idx($basic, 'name')); ?></strong></h1>
        <p class="tagline">
          Good Luck!
        </br>
        </p>
       <div id="share-app">
<!--          <p>Tools for your to invite your friends and spread your words:</p>-->
          <ul>
            <li>
                <a href="#" class="facebook-button" onclick='postToFeed(); return false;' >
                <span class="plus">Share this on my wall</span>
              </a>
            </li>  
<!--            <li>
              <a href="#" class="facebook-button speech-bubble" id="sendToFriends" data-url="<?php echo AppInfo::getUrl(); ?>">
                <span class="speech-bubble">Share Your Amazing Journey</span>
              </a>
            </li>-->
            <li>
              <a href="//<?php echo $_SERVER["HTTP_HOST"]; ?>/Thankyou.php" class="facebook-button speech-bubble" id="thankyou">
                <span class="speech-bubble">SUBMIT</span>
              </a>
            </li>
          </ul>
            <li>

              <a href="#" class="facebook-button apprequests" id="sendRequest" 
                 data-message="I have just invited you to fly with me">
            <span class="apprequests"><img border="0" class="facebook-button apprequests" id="sendRequest" src="http://i.imgur.com/lRdP3.jpg" style="width: 680px;margin-top:10px;z-index: -9999;"/></span>
                        </a>
            </li>
                      </div>
        <div id="guides"></div>

      <?php } else { ?>
      <section id="get-started">
      <p>Oops, You're out of track... Please reload the page to start over!</p>
      </section>
      <?php } ?>
    </header>
</body>
</html>

URL Return by Firefox with the error

https://www.facebook.com/dialog/feed?caption=Amazing%20Journeys%20by%20Malaysia%20Airlines&description=Malaysia%20Airlines%20is%20back%20with%20Amazing%20Journeys%20from%20only%20RM272%20from%2011th%20-%2018th%20June%202012.&display=popup&link=http%3A%2F%2Fwww.malaysiaairlines.com%2Fmy%2Fen%2Fdeals%2Fdeals-of-the-day.html%3Fcid%3D2145&locale=en_US&name=MAS%20Amazing%20Journey%20Deals&next=https%3A%2F%2Fs-static.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D8%23cb%3Df3bcbdb08f0cb22%26origin%3Dhttps%253A%252F%252Fmas-fb.net%252Ff3d2f4375cf26%26domain%3Dmas-fb.net%26relation%3Dopener%26frame%3Df23819ec6e183c%26result%3D%2522xxRESULTTOKENxx%2522&picture=http%3A%2F%2Fwww.malaysiaairlines.com%2Fcontent%2Fmas-admin%2Fmy%2Fen%2Fsite-configuration%2Fhomepagethreatre%2Fbook%2FAmazingWorldwideDeals%2F_jcr_content%2Fcontentpar%2Fmasimage_9126.img.jpg%2F1339349457238.jpg&sdk=joey

URL Return by Chrome with the error

https://www.facebook.com/dialog/feed?access_token=AAAFd06xhTEYBAANOHKdNqP9q7KudRVNgYqpptGHgkVeXwaRBjqIzOP99O06h40ionI8GugH6ENBkTyAwj6l87Eb3zJZAi1vHNQI0o7gWZC9pfysDk9&api_key=384638688250950&app_id=384638688250950&caption=Amazing%20Journeys%20by%20Malaysia%20Airlines&channel=https%3A%2F%2Fs-static.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D8%23cb%3Df1ca796e2c%26origin%3Dhttps%253A%252F%252Fmas-fb.net%252Ff356d6e91%26domain%3Dmas-fb.net%26relation%3Dparent.parent&channel_url=https%3A%2F%2Fs-static.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D8%23cb%3Df1bb0a298c%26origin%3Dhttps%253A%252F%252Fmas-fb.net%252Ff356d6e91%26domain%3Dmas-fb.net%26relation%3Dparent.parent&description=Malaysia%20Airlines%20is%20back%20with%20Amazing%20Journeys%20from%20only%20RM272%20from%2011th%20-%2018th%20June%202012.&display=iframe&link=http%3A%2F%2Fwww.malaysiaairlines.com%2Fmy%2Fen%2Fdeals%2Fdeals-of-the-day.html%3Fcid%3D2145&locale=en_US&name=MAS%20Amazing%20Journey%20Deals&next=https%3A%2F%2Fs-static.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D8%23cb%3Df3b274234c%26origin%3Dhttps%253A%252F%252Fmas-fb.net%252Ff356d6e91%26domain%3Dmas-fb.net%26relation%3Dparent%26frame%3Df3ebd35ae%26result%3D%2522xxRESULTTOKENxx%2522&picture=http%3A%2F%2Fwww.malaysiaairlines.com%2Fcontent%2Fmas-admin%2Fmy%2Fen%2Fsite-configuration%2Fhomepagethreatre%2Fbook%2FAmazingWorldwideDeals%2F_jcr_content%2Fcontentpar%2Fmasimage_9126.img.jpg%2F1339349457238.jpg&sdk=joey

share|improve this question
did you sign in to facebook and get an access token/permissions on firefox? – martincarlin87 Jun 14 '12 at 9:06
yes, i did in previous page and when proceed to next page, i noticed that the authentication token is missing, but why i can parse the token in chrome but not in firefox ? what should i do to parse it to second page ? – SLim Jun 14 '12 at 9:50

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.