TypeError: firebase.messaging is not a function in node.js

前端 未结 5 1988
我在风中等你
我在风中等你 2021-01-17 19:58

While trying to fetch the FCM messages in node.js using firebase module, following error \"TypeError: firebase.messaging is not a function\" is occurring.

v         


        
5条回答
  •  清歌不尽
    2021-01-17 20:31

    In my case was that I was importing firebase only as

    import '@firebase/app'
    

    instead of

    import * as firebase from '@firebase/app'
    

    after formatting it, I was able to access messaging from firebase.firebase.messaging()

提交回复
热议问题