-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
94 lines (84 loc) · 2.19 KB
/
app.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
const { initializeApp, applicationDefault } = require('firebase-admin/app');
const { getAuth } = require('firebase-admin/auth')
initializeApp({
credential: applicationDefault(),
});
// GET PROJECT CONFIG
// getAuth()
// .projectConfigManager()
// .getProjectConfig()
// .then(
// (projectConfigResult) => {
// console.log(JSON.stringify(projectConfigResult.recaptchaConfig, null, 2));
// }
// );
//UPDATE PROJECT CONFIG
// const recaptchaConfig = {
// phoneEnforcementState: 'AUDIT',
// managedRules: [
// {
// endScore: 0.1,
// action: 'BLOCK',
// },
// ],
// useAccountDefender: true,
// useSmsBotScore: true,
// useSmsTollFraudProtection: false,
// smsTollFraudManagedRules: [
// {
// startScore: 0.8,
// action: 'BLOCK',
// },
// ],
// }
// getAuth().projectConfigManager().updateProjectConfig({
// recaptchaConfig,
// }).then(
// (updateProjectConfigResult) => {
// console.log(JSON.stringify(updateProjectConfigResult.recaptchaConfig, null, 2));
// }
// );
// TENANT CONFIG
getAuth()
.tenantManager()
.createTenant({displayName: requestTenant.displayName})
.then(
(createdTenant) =>
console.log(JSON.stringify(createdTenant, null, 2))
);
let tenantId = "some-tenantId"; // use the tenantId from the created tenant
const recaptchaConfig = {
phoneEnforcementState: 'AUDIT',
managedRules: [
{
endScore: 0.1,
action: 'BLOCK',
},
],
useAccountDefender: true,
useSmsBotScore: true,
useSmsTollFraudProtection: false,
smsTollFraudManagedRules: [
{
startScore: 0.8,
action: 'BLOCK',
},
],
};
// UPDATE TENANT CONFIG
getAuth()
.tenantManager()
.updateTenant(tenantId, {recaptchaConfig})
.then(
(updatedConfig) =>
console.log(JSON.stringify(updatedConfig, null, 2))
);
// GET TENANT CONFIG
// getAuth()
// .tenantManager()
// .getTenant(tenantId)
// .then(
// (getTenantResult) => {
// console.log(JSON.stringify(getTenantResult, null, 2));
// }
// );