[ios]swift firebase auth password reset mail 보내는방법
비밀번호 찾기를 할경우, 이메일을 보내서 갱신 시켜줘야 한다..
firebase 에서 기본적으로 제공한다..
private func loadFirebaseSendPasswordReset()
{
let email = self.emailTextField.text!
// email 보내기
Auth.auth().sendPasswordReset(withEmail: email) { (error) in
if let error = error
{
// firebase 등록 된 실패 error code 없다.
if let errorCode : AuthErrorCode = AuthErrorCode(rawValue: error._code)
{
print("-> error -> \(error.localizedDescription) -> code -> \(errorCode.rawValue)")
}
}
else
{
// success
self.setAlert(title: "", msg: "메일전송하였습니다. 비밀번호를 변경 부탁드립니다.")
}
}
}
'ios,swift' 카테고리의 다른 글
[ios]swift .byTruncatingTail not working 해결방법 (0) | 2020.04.01 |
---|---|
[ios]swift firebase auth password update 방법 (0) | 2020.03.30 |
[ios]swift firebase auth email login방법 (0) | 2020.03.30 |
[ios]swift fireabse auth email 회원가입 방법 (0) | 2020.03.30 |
[ios]swift firebase Auth displayname, photoURL 바꾸는 방법 (0) | 2020.03.30 |