exports.sendWelcomeEmail = functions.auth.user().onCreate((user) => { console.log(user.uid); console.log(user.email); console.log(user.displayName); }); exports.getUserInfo = functions.https.onCall(async (data, context) => { // get array of user IDs and returns information (from Users collection) const userIDs = data.userIDs; const result = []; const querySnapData = await admin.firestore().collection("Users").get(); querySnapData.forEach((ele) => { if (userIDs.indexOf(ele.id) !== -1 && ele.id !== context.auth.uid) { result.push(ele.data()); } }); return { res: result }; }); I've got these two functions in my project - one is callable function and the other one is auth trigger functions.
So in my client app, I run
firebase.functions().useFunctionsEmulator('http://localhost:5001'); let getUserInfo = functions.httpsCallable('getUserInfo'); getUserInfo({userIDs: data}).then(res => doSomething); And to run the cloud functions locally
firebase emulators:start But it says
functions[sendWelcomeEmail]: function ignored because the auth emulator does not exist or is not running. So in the client App, getUserInfo works pretty well but can't trigger onCreate.
But I was not able to find any document about auth emulator.
Any link/article/video or answer is appreciated.