iOS Firebase Authentication: Deleting Users | Firebase Bootcamp #7

preview_player
Показать описание
Learn how to securely delete a user from Firebase Authentication in an iOS app with this tutorial video. We'll guide you through the step-by-step process and provide helpful tips to make sure you're doing it correctly. Whether you're new to Firebase or just need a refresher, this video is perfect for anyone looking to remove a user from their app.

🤙 WELCOME BACK 🤙

00:00 Delete Account
00:29 Intro
Рекомендации по теме
Комментарии
Автор

I would like to see sign in using phone if possible. Thanks!

wonton
Автор

really wanted to know how to do the phone login

awu
Автор

Thanks for your great video.
Please I have a question regarding to append array in array.
For example I wanna append [replies] in [Comments].
In firestore.
I’m not able to find the correct answer or approach to append array in specific index in [comments]

mrslana
Автор

These Authentication videos have been fantastic and very informative!

I keep running into this essor though, and I'm worried it is going to kill my progress. I think it is already effecting my ability to delete users from Firebase Authentication. Any suggestions? I've looked up & down my Firebase & PList....

import Foundation
import FirebaseAuth

struct AuthDataResultModel {
let uid: String
let email: String?
let photoURL: String?
let isAnonymous: Bool
}
}

init(user: User) { error: Cannot find type 'User' in scope
self.uid = user.uid
self.email = user.email
self.photoURL = user.photoURL?.absoluteString
self.isAnonymous = user.isAnonymous
}
}

myopic
Автор

Hi, i want to ask, why when i run the codes, for example the delete function, the function works, but it never direct back to the sign in page. How to solve it? can you help? thank you

akmalxz
Автор

When I follow this code, it appears to work. I can no longer login with that user. But I still see the user in Firebase.

Does anyone know how to fix this issue?

ritzg
Автор

ooh i get the error Requires RECENT LOGIN

Designguidetv