How to facebook getuser() after login with javascript SDK

Posted by user1848205 on Stack Overflow See other posts from Stack Overflow or by user1848205
Published on 2012-11-23T18:13:02Z Indexed on 2012/11/26 11:06 UTC
Read the original article Hit count: 176

Filed under:
|
|
|
|

So I have to ask for extended permission by clicking the enter button, but after the login is necessary to refresh the page in order to display the app. Here's my code:

<?php
require 'facebook.php';
$facebook = new Facebook(array(
  'appId'  => '< THE APPID >',
  'secret' => '< THE SECRET >',
  'cookie' => true,
));
$user = $facebook->getUser();

if ($user) {
  try {
    $user_profile = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    error_log($e);
    $user = null;
  }
}
?>
<body>
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {

    FB.init({
      appId      : '< THE APPID >',
      status     : true,
      cookie     : true,
      xfbml      : true
    });

    // Additional initialization code such as adding Event Listeners goes here
    $('#btn-enter').click(function(){
        login();
    });

  };
  (function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));

    function login() {
        FB.login(function(response) {
            if (response.authResponse) {        
                // connected
            } else {
                // cancelled
            }
        //});
        }, {scope: 'read_friendlists,friends_photos,publish_stream'});
    }
</script>
<?php if ($user): ?>
    <!--Here is my APP-->
<?php else: ?>
<a id="btn-enter">Enter</a>
<?php endif ?>

Is there a better way to do this ? What works for me is:

function login() {
    FB.login(function(response) {
        if (response.authResponse) {
            top.location.href='https://the_app_url';            
        } else {
        }
    //});
    }, {scope: 'read_friendlists,friends_photos,publish_stream'});
} 

But this causes the entire page to refresh and is not 'elegant' per se...

© Stack Overflow or respective owner

Related posts about php

Related posts about JavaScript