Search
🔐

[FireBase - iOS] 로그인, 로그아웃

이메일을 활용한 로그인

Auth.auth().signIn(withEmail: email, password: password, completion: completion)
Swift
복사

써드 파티 액세스 토큰을 활용한 로그인

Auth.auth().signIn(with: AuthCredential) { AuthDataResult?, Error? in }
Swift
복사