From aa8c68c2f52fe1c82a99984dd1157e1542b5139d Mon Sep 17 00:00:00 2001 From: Morgan Chen Date: Wed, 21 Jul 2021 11:20:55 -0700 Subject: [PATCH] remove whitelist from readme --- FirebaseAuthUI/README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/FirebaseAuthUI/README.md b/FirebaseAuthUI/README.md index 3d5735b9c27..add11d4c220 100644 --- a/FirebaseAuthUI/README.md +++ b/FirebaseAuthUI/README.md @@ -192,9 +192,14 @@ UINavigationController *authViewController = [authUI authViewController]; ``` ### Configuring Email Link Sign In -To use email link sign in, you will first need to enable it in the Firebase Console. Additionally, you will also have to enable Firebase Dynamic Links. - -You can enable email link sign in by initializing an `FUIEmailAuth` instance with `FIREmailLinkAuthSignInMethod`. You will also need to provide a valid `FIRActionCodeSettings` object with `handleCodeInApp` set to true. Additionally, you need to whitelist the URL you pass to the iniatializer; you can do so in the Firebase Console (Authentication -> Sign in Methods -> Authorized domains). +To use email link sign in, you will first need to enable it in the Firebase Console. +Additionally, you will also have to enable Firebase Dynamic Links. + +You can enable email link sign in by initializing an `FUIEmailAuth` instance with +`FIREmailLinkAuthSignInMethod`. You will also need to provide a valid +`FIRActionCodeSettings` object with `handleCodeInApp` set to true. Additionally, you +need to allowlist the URL you pass to the initializer; you can do so in the Firebase +Console (Authentication -> Sign in Methods -> Authorized domains). ```objective-c // Objective-C