-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathcallable.js
62 lines (53 loc) · 1.75 KB
/
callable.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
// [SNIPPET_REGISTRY disabled]
// [SNIPPETS_SEPARATION enabled]
export function initialize() {
// [START fb_functions_initialize]
const { initializeApp } = require("firebase/app");
const { getFunctions } = require("firebase/functions");
initializeApp({
// Your Firebase Web SDK configuration
// [START_EXCLUDE]
projectId: "<PROJECT_ID>",
apiKey: "<API_KEY>",
// [END_EXCLUDE]
});
const functions = getFunctions();
// [END fb_functions_initialize]
}
export function callAddMessage() {
const messageText = "Hello, World!";
// [START fb_functions_call_add_message]
const { getFunctions, httpsCallable } = require("firebase/functions");
const functions = getFunctions();
const addMessage = httpsCallable(functions, 'addMessage');
addMessage({ text: messageText })
.then((result) => {
// Read result of the Cloud Function.
/** @type {any} */
const data = result.data;
const sanitizedMessage = data.text;
});
// [END fb_functions_call_add_message]
}
export function callAddMessageError(firebaseApp) {
const messageText = "Hello, World!";
// [START fb_functions_call_add_message_error]
const { getFunctions, httpsCallable } = require("firebase/functions");
const functions = getFunctions();
const addMessage = httpsCallable(functions, 'addMessage');
addMessage({ text: messageText })
.then((result) => {
// Read result of the Cloud Function.
/** @type {any} */
const data = result.data;
const sanitizedMessage = data.text;
})
.catch((error) => {
// Getting the Error details.
const code = error.code;
const message = error.message;
const details = error.details;
// ...
});
// [END fb_functions_call_add_message_error]
}