Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

181
Vistas
Fb login button causes infinity loops in FB built-in browser

I'm using FB login button to provide 1-click login on my website. It is working fine on almost all of the browsers. However it does not work on FB built-in browser. Here is my code:

HTML:

<script async defer crossorigin="anonymous" 
        src="https://connect.facebook.net/bg_BG/sdk.js#xfbml=1&version=v12.0&appId={appID}&autoLogAppEvents=1" 
        nonce="{nonce}"></script>
<div class="fb-login-button" 
     data-width="300" 
     data-size="large" 
     data-button-type="continue_with" 
     data-layout="default" 
     data-auto-logout-link="false" 
     data-use-continue-as="false" 
     scope="public_profile,email" 
     onlogin="checkLoginState()">
</div>

JS:

function loginCallbackOnButtonClick(response) {
    let dataObject, authResponse;        

    if (!response || response.status != "connected" || !response.authResponse) {
        return;
    }

    authResponse = response.authResponse;

    dataObject = {            
        accessToken: authResponse.accessToken,
        signedRequest: authResponse.signedRequest,
        fbUserID: authResponse.userID,
        urlReferrer: urlReferrerInput.value
    };

    // send data to back-end to verify
    $.ajax({
        url: '/Account/FbLogin',
        type: 'post',
        data: dataObject,
        success: function (response) {
            // handle successful verification                
        }
    });
}

window.fbAsyncInit = function () {
    FB.init({
        appId: '{appID}',
        cookie: true,
        xfbml: true,
        version: 'v12.0'
    });        
};

(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 = "https://connect.facebook.net/en_US/sdk.js";
    fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));

window.checkLoginState = function () {        
    FB.getLoginStatus(loginCallbackOnButtonClick);
};

Again, this code work very well on almost all of the browsers, but not in FB built-in browser, where on button click our login page (where the button is placed) reloads and nothing happens.

I tried the following: when user comes on our login page and he is using FB built-in browser, to call

FB.login(loginCallbackOnButtonClick, {
                scope: 'public_profile,email',
                enable_profile_selector: true,
                auth_type: 'rerequest',
                return_scopes: true
            });

I tried to debug somehow using logger here and there in the code and display in textarea the logs, what code is executed and it seems that loginCallbackOnButtonClick is never called as a callback.

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda