-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathemulator-suite.js
36 lines (29 loc) · 1.09 KB
/
emulator-suite.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
// [SNIPPET_REGISTRY disabled]
// [SNIPPETS_SEPARATION enabled]
import { initializeApp } from "firebase/app";
initializeApp({
projectId: '### PROJECT ID ###',
apiKey: '### FIREBASE API KEY ###',
authDomain: '### FIREBASE AUTH DOMAIN ###',
});
export function emulatorSettings() {
// [START fb_functions_emulator_connect]
const { getApp } = require("firebase/app");
const { getFunctions, connectFunctionsEmulator } = require("firebase/functions");
const functions = getFunctions(getApp());
connectFunctionsEmulator(functions, "127.0.0.1", 5001);
// [END fb_functions_emulator_connect]
}
export async function callFunction() {
// [START fb_functions_callable_call]
const { getApp } = require("firebase/app");
const { getFunctions, httpsCallable } = require("firebase/functions");
const functions = getFunctions(getApp());
const addMessage = httpsCallable(functions, 'addMessage');
const result = await addMessage({ text: '<message text>'});
/** @type {any} */
const data = result.data;
const sanitizedMessage = data.text;
// ...
// [END fb_functions_callable_call]
}