سؤال

I am adding facebook authentication to my website. Is there a way for me to know whether the user checked "stay logged in"?

    FB.login(function(response) {
       if (response.authResponse) {
         FB.api('/me', function(response) {
            // logged in
            KNOW HERE: Did user check 'stay logged in'?
         });
       }else {
       }
   });
هل كانت مفيدة؟

المحلول

The answer seems to be that it is not possible to determine.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top