0
我目前正在使用ionic2和firebase技術。我如何驗證用戶登錄到我的應用的Gmail帳戶是否真的存在。我如何檢查gmail帳戶是否真的存在與ionic2和firebase?
我目前正在使用ionic2和firebase技術。我如何驗證用戶登錄到我的應用的Gmail帳戶是否真的存在。我如何檢查gmail帳戶是否真的存在與ionic2和firebase?
您可以向用戶發送驗證郵件並讓他們驗證其電子郵件地址。
var user = firebase.auth().currentUser;
user.sendEmailVerification().then(function() {
// Email sent.
}, function(error) {
// An error happened.
});
https://firebase.google.com/docs/auth/web/manage-users#send_a_user_a_verification_email
作爲補充,如果電子郵件被接受,你的唯一參考,那麼你可以將它們添加到您的火力地堡數據。 –