We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a8ae1e commit 092f4cbCopy full SHA for 092f4cb
README.md
@@ -95,6 +95,10 @@ sign in function
95
```ts
96
async googleSignIn() {
97
let googleUser = await GoogleAuth.signIn();
98
+
99
+ /*
100
+ If you use Firebase you can forward and use the logged in Google user like this:
101
+ */
102
const credential = auth.GoogleAuthProvider.credential(googleUser.authentication.idToken);
103
return this.afAuth.auth.signInAndRetrieveDataWithCredential(credential);
104
}
0 commit comments