作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试用于Web(https://github.com/firebase/FirebaseUI-Web)的新FirebaseUI。但是,当我尝试使用电子邮件登录时,它会将我重定向到AccountChooser网站。
无论如何,我可以关闭该AccountChooser吗?
谢谢
最佳答案
您可以通过在Firebase中的变量uiConfig
中添加条目来禁用。您必须在uiConfig变量中添加它:
'credentialHelper': firebaseui.auth.CredentialHelper.NONE
uiConfig
中的示例:
var uiConfig = {
callbacks: {
signInSuccess: function (currentUser, credential, redirectUrl) {
return true;
},
uiShown: function () {
document.getElementById('loader').style.display = 'none';
}
},
//Start it here
credentialHelper: firebaseui.auth.CredentialHelper.NONE,
//End it here
signInFlow: 'popup',
signInSuccessUrl: '<url-to-redirect-to-on-success>',
signInOptions: [
// Leave the lines as is for the providers you want to offer your users.
firebase.auth.GoogleAuthProvider.PROVIDER_ID,
firebase.auth.FacebookAuthProvider.PROVIDER_ID,
firebase.auth.TwitterAuthProvider.PROVIDER_ID,
firebase.auth.EmailAuthProvider.PROVIDER_ID
],
// Terms of service url.
tosUrl: '<your-tos-url>'
};
var ui = new firebaseui.auth.AuthUI(firebase.auth());
ui.start('#firebaseui-auth-container', uiConfig);
关于firebase - 禁用AccountChooser进行Firebase身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37369929/
目前我有使用以下 Java 配置的 OAuth2 身份验证流程: @Configuration @EnableOAuth2Client @Import(SecurityWebAppInitialize
我们一直在使用 google identity toolkit 在我们的 alpha 和 beta 网站上登录,它非常流畅、简单且易于操作(Alpha 和 beta 用户获得了特定的登录说明)。当我们
我是一名优秀的程序员,十分优秀!