TypeError: firebase.messaging is not a function in node.js(TypeError:firebase.messaging 不是 node.js 中的函数)
问题描述
尝试使用 firebase 模块在 node.js 中获取 FCM 消息时,出现以下错误TypeError: firebase.messaging is not a function".
While trying to fetch the FCM messages in node.js using firebase module, following error "TypeError: firebase.messaging is not a function" is occurring.
var firebase = require("firebase");
firebase.initializeApp({
apiKey: "xxxxxxx",
authDomain: "xxxxxxx",
databaseURL: "xxxxxxx",
projectId: "xxxxxxx",
storageBucket: "xxxxxxx",
messagingSenderId: "xxxxxxx"
});
const messaging = firebase.messaging();
如何纠正这个错误以及如何使用firebase模块拉消息??
How to rectify this error and how to use firebase module to pull messages??
推荐答案
您尝试使用的条件仅适用于浏览器:
The criteria you are trying to use only works on the browser:
您必须要求 firebase-messaging,查看此完整示例,它将指导您 https://github.com/firebase/quickstart-js/tree/master/messaging
You have to require firebase-messaging, check this full sample it will guide you https://github.com/firebase/quickstart-js/tree/master/messaging
对于nodeJS的实现,你必须使用admin.messaging
For nodeJS implementation, you have to use admin.messaging
https://firebase.google.com/docs/reference/admin/node/admin.messaging
// Get the Messaging service for the default app
var defaultMessaging = admin.messaging();
这篇关于TypeError:firebase.messaging 不是 node.js 中的函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:TypeError:firebase.messaging 不是 node.js 中的函数
基础教程推荐
- 如何在特定日期之前获取消息? 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
