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 facebook javascript sdk for user to login and then php sdk for other process. This is my sample code:

<?php
require_once('AppInfo.php');
require 'src/facebook.php';
$facebook = new Facebook(array(
'appId'  => '*****',
'secret' => '*****',
));
// See if there is a user from a cookie
$user = $facebook->getUser();
if ($user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $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();
}
}
}
?>
<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>Facebook App</title>
<h1>Facebook App</h1>
</head>
<body>
<div id="fb-root"></div>
<script type="text/javascript">               
  window.fbAsyncInit = function() {
    FB.init({
      appId: '<?php echo $facebook->getAppID() ?>', 
      cookie: true, 
      xfbml: true,
      status: true,
      channelUrl : '//<?php echo $_SERVER["HTTP_HOST"]; ?>/fb/channel.html'
    });

    FB.Event.subscribe('auth.login', function(response) {
      window.location.reload();
    });
      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)) { ?>
 <h1>Hi</h1>

  <div>
    <h1>Welcome Hero</h1>
    <p class="tagline">
      This is your app
    </p>
  </div>
<?php } else { ?>
<div>
    <h1>Welcome Villian</h1>
    <div class="fb-login-button" data-scope="user_likes,user_photos,publish_stream"></div>
  </div>
  <?php echo $user_profile[id]; 
 echo "hhhh";} ?>
 </body>
    </html> 

Problem is i always see Else part running. Even if after user logs in, it shows the else part. Can someone please help me

share|improve this question

1 Answer

this is problem in php sdk. use js sdk along with phpsdk

share|improve this answer
Do you have any working example for how to use js sdk and php sdk tofather – Pratik Oct 23 '12 at 1:31

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.