我是Firebase的新手。我正在尝试将Google OAuth连接到我的Firebase实例。
我设置了一切,并获得了客户端ID和客户端的分泌。我将localhost添加到Firebase信息中心的白名单中。然后我使用了下面的Firebase示例:
<html>
<head>
<script src="https://cdn.firebase.com/js/client/2.0.4/firebase.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
</head>
<body>
<script>
var ref = new Firebase("https://<firebase url>.firebaseio.com");
ref.authWithOAuthRedirect("google", function(error, authData) {
if (error) {
console.log("Login Failed!", error);
} else {
console.log("Authenticated successfully with payload:", authData);
}
});
</script>
</body>
</html>
当我打开它时,它会要求允许通过Google进行身份验证。当我接受它时,它只是继续进行重定向(无限)并且没有完成加载。对问题的任何见解都会有所帮助。感谢。
编辑: 我注意到:authWithOAuthPopup()方法有效但重定向只是停留在无限重定向循环中。
答案 0 :(得分:8)
每当您致电ref.authWithOAuthRedirect(...)
时,您都会告诉Firebase启动基于重定向的身份验证流程,并将浏览器重定向到OAuth提供商。调用此方法将始终尝试创建 new 会话,即使已在浏览器中保留了该会话。
要仅尝试创建新的登录会话(如果尚未存在),请尝试使用以下onAuth(...)
事件监听器:
var ref = new Firebase("https://<firebase url>.firebaseio.com");
ref.onAuth(function(authData) {
if (authData !== null) {
console.log("Authenticated successfully with payload:", authData);
} else {
// Try to authenticate with Google via OAuth redirection
ref.authWithOAuthRedirect("google", function(error, authData) {
if (error) {
console.log("Login Failed!", error);
}
});
}
})