Facebook API - Grab photo(with set size) with other information(name, email, id)?

Asked

Viewed 655 times

1

I need to get the id, name, email, and photo of the person by clicking sign in.

I’m doing it so far but you’re in trouble:

<script type="text/javascript">
  function statusChangeCallback(response) {
    if (response.status === 'connected') {
      testAPI();
    }else if(response.status === 'not_authorized') {
      document.getElementById('status').innerHTML = 'Please log ' +
        'into this app.';
    }else{
      document.getElementById('status').innerHTML = 'Please log ' +
        'into Facebook.';
    }
  }

  function checkLoginState() {

    FB.getLoginStatus(function(response) {
      statusChangeCallback(response);
    });
  }



  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'xxxxxxx',
      cookie     : true,  // enable cookies to allow the server to access 
                          // the session
      xfbml      : true,  // parse social plugins on this page
      version    : 'v2.6' // use version 2.2
    });


  };


  (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/pt_BR/sdk.js";
    fjs.parentNode.insertBefore(js, fjs);
  }(document, 'script', 'facebook-jssdk'));

  function testAPI() {
    FB.api('/me?fields=id,name,email,permissions', function(response) {
      data_facebook = {id_facebook:response.id, name:response.name, email:response.email};
      document.getElementById('status').innerHTML =
        'Thanks for logging in, ' + response.name + '!';

       FB.api('/me/picture?width=400&height=400', function(response) {
         data_facebook.picture = response.data.url;
          $.ajax({
            method: 'GET',
            url: '/teste/facebook',
            data: {id_facebook: data_facebook.id_facebook, name: data_facebook.name, email: data_facebook.email, picture: data_facebook.picture}
          })
          .success(function(data){
            //window.location.href = '/teste/facebook';
          });
        console.log(data_facebook);
       });
    });

  }
</script>

Sometimes ajax takes the values of data_facebook and sometimes it doesn’t. It seems that it is running too early, I know there.

I put FB.api inside FB.api and believe it is wrong tbm.

1 answer

1

Take it off and test again 'cause mine worked

 function checkLoginState() {

    FB.getLoginStatus(function(response) {
      statusChangeCallback(response);
    });
  }

Browser other questions tagged

You are not signed in. Login or sign up in order to post.