skip to Main Content

Firebase Function deployment fail

This firebase function which triggers firebase messaging fails due to unknown error import * as functions from "firebase-functions"; import * as admin from "firebase-admin"; const messaging = admin.messaging(); export const sendChatNotification = functions.firestore.document('chats/{chatId}/messages/{messageId}').onCreate(async (snapshot) => { const message = {…

VIEW QUESTION
Back To Top
Search