Vai ai contenuti
Facebook Login JavaScript Example
" https://developers.facebook.com/docs/facebook-login/web/login-button/#:~:text=Passaggio%201%3A%20includi,as%3D%22true%22%3E%3C/div%3E Accedi con Facebook
FB.login(function(response) { // handle the response }, {scope: 'public_profile,email'}); FB.login(function(response) { if (response.status === 'connected') { // Logged into your webpage and Facebook. } else { // The person is not logged into your webpage or we are unable to tell. } });
FB.logout(function(response) { // Person is now logged out });
Torna ai contenuti