-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathoidc.js
68 lines (61 loc) · 2.04 KB
/
oidc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// These samples are intended for Web so this import would normally be
// done in HTML however using modules here is more convenient for
// ensuring sample correctness offline.
import firebase from "firebase/app";
import "firebase/auth";
function oidcProvider() {
// [START auth_oidc_provider_create]
const provider = new firebase.auth.OAuthProvider('oidc.myProvider');
// [END auth_oidc_provider_create]
}
function oidcSignInPopup(provider) {
// [START auth_oidc_signin_popup]
firebase.auth().signInWithPopup(provider)
.then((result) => {
// User is signed in.
// result.credential is a firebase.auth().OAuthCredential object.
// result.credential.providerId is equal to 'oidc.myProvider'.
// result.credential.idToken is the OIDC provider's ID token.
})
.catch((error) => {
// Handle error.
});
// [END auth_oidc_signin_popup]
}
function oidcSignInRedirect(provider) {
// [START auth_oidc_signin_redirect]
firebase.auth().signInWithRedirect(provider).catch((error) => {
// Handle error.
});
// [END auth_oidc_signin_redirect]
}
function oidcSignInRedirectResult(provider) {
// [START auth_oidc_signin_redirect_result]
// On return.
firebase.auth().getRedirectResult()
.then((result) => {
// User is signed in.
// result.credential is a firebase.auth().OAuthCredential object.
// result.credential.providerId is equal to 'oidc.myProvider'.
// result.credential.idToken is the OIDC provider's ID token.
})
.catch((error) => {
// Handle / display error.
// ...
});
// [END auth_oidc_signin_redirect_result]
}
function oidcDirectSignIn(provider, oidcIdToken) {
// [START auth_oidc_direct_sign_in]
const credential = provider.credential(oidcIdToken, null);
firebase.auth().signInWithCredential(credential)
.then((result) => {
// User is signed in.
// User now has a odic.myProvider UserInfo in providerData.
})
.catch((error) => {
// Handle / display error.
// ...
});
// [END auth_oidc_direct_sign_in]
}