You can let your users authenticate with Firebase using their Google Accounts by integrating Google Sign-In into your app.
Before you begin
- Add Firebase to your iOS project. Include the following pods in your
Podfile
: pod 'Firebase/Auth'
pod 'GoogleSignIn' - If you haven't yet connected your app to your Firebase project, do so from the Firebase console.
- Enable Google Sign-In in the Firebase console:
- In the Firebase console, open the Auth section.
- On the Sign in method tab, enable the Google sign-in method and click Save.
1. Import the required header files
First, you must import the Firebase SDK and Google Sign-In SDK header files into your app.
In your app delegate, import the following header files:
import Firebaseimport GoogleSignIn
In the view controller of your sign-in view, import the following header files:
import Firebaseimport GoogleSignIn
2. Implement Google Sign-In
Implement Google Sign-In by following these steps. See the Google Sign-In developer documentationfor details on using Google Sign-In with iOS.
- Add custom URL schemes to your Xcode project:
- Open your project configuration: double-click the project name in the left tree view. Select your app from the TARGETS section, then select the Info tab, and expand the URL Typessection.
- Click the + button, and add a URL scheme for your reversed client ID. To find this value, open the
GoogleService-Info.plist
configuration file, and look for theREVERSED_CLIENT_ID
key. Copy the value of that key, and paste it into the URL Schemesbox on the configuration page. Leave the other fields blank.When completed, your config should look something similar to the following (but with your application-specific values):
- Declare that the app delegate implements the
GIDSignInDelegate
protocol.AppDelegate.swift
: class AppDelegate : UIResponder , UIApplicationDelegate , GIDSignInDelegate { - In your app delegate's
application:didFinishLaunchingWithOptions:
method, configure theFirebaseApp
object and set the sign-in delegate.// Use Firebase library to configure APIs
FirebaseApp . configure ()
GIDSignIn . sharedInstance (). clientID = FirebaseApp . app ()?. options . clientID
GIDSignIn . sharedInstance (). delegate = self - Implement the
application:openURL:options:
method of your app delegate. The method should call thehandleURL
method of theGIDSignIn
instance, which will properly handle the URL that your application receives at the end of the authentication process.@available ( iOS 9.0 , *)
func application ( _ application : UIApplication , open url : URL , options : [ UIApplicationOpenURLOptionsKey : Any ])
-> Bool {
return GIDSignIn . sharedInstance (). handle ( url ,
sourceApplication : options [ UIApplicationOpenURLOptionsKey . sourceApplication ] as ? String ,
annotation : [:])
}For your app to run on iOS 8 and older, also implement the deprecated
application:openURL:sourceApplication:annotation:
method.func application ( _ application : UIApplication , open url : URL , sourceApplication : String ?, annotation : Any ) -> Bool {
return GIDSignIn . sharedInstance (). handle ( url ,
sourceApplication : sourceApplication ,
annotation : annotation )
} - In the app delegate, implement the
GIDSignInDelegate
protocol to handle the sign-in process by defining the following methods:- ( void ) signIn :( GIDSignIn *) signIn
didSignInForUser :( GIDGoogleUser *) user
withError :( NSError *) error {
// ...
if ( error == nil ) {
GIDAuthentication * authentication = user . authentication ;
FIRAuthCredential * credential =
[ FIRGoogleAuthProvider credentialWithIDToken : authentication . idToken
accessToken : authentication . accessToken ];
// ...
} else {
// ...
}
}
- ( void ) signIn :( GIDSignIn *) signIn
didDisconnectWithUser :( GIDGoogleUser *) user
withError :( NSError *) error {
// Perform any operations when the user disconnects from app here.
// ...
} - Declare that your sign-in view's controller implements the
GIDSignInUIDelegate
protocol.In the view controller:
class MainViewController : UITableViewController , GIDSignInUIDelegate { - In the view controller, override the
viewDidLoad
method to set the UI delegate of theGIDSignIn
object, and (optionally) to sign in silently when possible.- ( void ) viewDidLoad {
[ super viewDidLoad ];
[ GIDSignIn sharedInstance ]. uiDelegate = self ;
[[ GIDSignIn sharedInstance ] signIn ];
// TODO(developer) Configure the sign-in button look/feel
// ...
} - Add a
GIDSignInButton
to your storyboard, XIB file, or instantiate it programmatically. To add the button to your storyboard or XIB file, add a View and set its custom class toGIDSignInButton
.When you add aGIDSignInButton
view to your storyboard, the sign-in button doesn't render in the interface builder. Run the app to see the sign-in button. - Optional: If you want to customize the button, do the following:
- In your view controller, declare the sign-in button as a property. @IBOutlet weak var signInButton: GIDSignInButton!
- Connect the button to the
signInButton
property you just declared. - Customize the button by setting the properties of the GIDSignInButton object.
3. Authenticate with Firebase
In the signIn:didSignInForUser:withError:
method, get a Google ID token and Google access token from the GIDAuthentication
object and exchange them for a Firebase credential:
// ...
if let error = error {
// ...
return
}
guard let authentication = user . authentication else { return }
let credential = GoogleAuthProvider . credential ( withIDToken : authentication . idToken ,
accessToken : authentication . accessToken )
// ...
}
Finally, authenticate with Firebase using the credential:
if let error = error {
// ...
return
}
// User is signed in
// ...
}
}
Next steps
After a user signs in for the first time, a new user account is created and linked to the credentials—that is, the user name and password, phone number, or auth provider information—the user signed in with. This new account is stored as part of your Firebase project, and can be used to identify a user across every app in your project, regardless of how the user signs in.
In your apps, you can get the user's basic profile information from the
FIRUser
object. See Manage Users.In your Firebase Realtime Database and Cloud Storage Security Rules, you can get the signed-in user's unique user ID from the
auth
variable, and use it to control what data a user can access.
You can allow users to sign in to your app using multiple authentication providers by linking auth provider credentials to an existing user account.
To sign out a user, call signOut:
.
BOOL status = [[ FIRAuth auth ] signOut :& signOutError ];
if (! status ) {
NSLog (@ "Error signing out: %@" , signOutError );
return ;
}
You may also want to add error handling code for the full range of authentication errors. See Handle Errors.