我使用雲功能火力管理SDK使用創建可以登入使用電子郵件和密碼
admin.auth().createUser({
email: someEmail,
password: somePassword,
})
現在我想用戶登入使用signInWithEmailAndPassword('someEmail', 'somePassword')
創建用戶與火力的Admin SDK用戶,但我不能。 我收到以下錯誤
{code: "auth/user-not-found", message: "There is no user record corresponding to this identifier. The user may have been deleted."}
您使用的客戶端在同一項目上面板和管理雙方創建?您是否可以在Firebase控制檯中看到使用此電子郵件的用戶? – bojeil