2017-01-16 48 views
0

我正在使用帶有電子郵件和密碼的Firebase身份驗證登錄,我正在關注如何在當前應用中實現它的Github示例示例。顯然,方法「authWithPassword」已被刪除,我無法在firebase.auth庫中找到任何有關它是否已被棄用且已被替換的註釋?任何人都可以提供一些關於這個問題的見解什麼是在Firebase中取代authWithPassword?

+2

檢查此? https://firebase.google.com/docs/auth/android/password-auth – TruongHieu

回答

1

它已被替換爲signInWithEmailAndPassword。然而,該方法是在火力地堡參考不再,相反,它是在一個FirebaseAuth實例:

FirebaseAuth auth = FirebaseAuth.getInstance(); 
auth.signInWithEmailAndPassword("some-email", "some-password").addOnCompleteListener(...); 

有一個遷移指南here

+0

createUserWithEmailAndPassword與signInWithEmailAndPassword有什麼不同? –

+0

'createUserWithEmailAndPassword'使用用戶提供的憑證和標誌(如果帳戶創建成功)創建一個新的用戶帳戶。 'signInWithEmailAndPassword'只會將用戶登錄到現有帳戶。 – cartant

相關問題