less than 1 minute read

Vue.js 프로젝트에 FCM 추가하기

import Vue from 'vue'
import { initializeApp, messaging } from 'firebase'

new Vue({
  el: '#app',
  created () {
    initializeApp({
      messagingSenderId: SENDER_ID
    })

    const message = messaging()
    navigator.serviceWorker.register('/static/firebase-messaging-sw.js')
      .then((registration) => {
        console.log('serviceWorker registration')
        return message.useServiceWorker(registration)
      }).then(() => {
        return message.requestPermission()
      })
      .then(() => {
        console.log('Notification permission granted.')
        return message.getToken()
      })
      .then(token => {
        console.log(token)
      })
      .catch(err => {
        console.log('Unable to get permission to notify.', err)
      })

    message.onMessage(({ notification }) => {
      const { title, body } = notification
      console.log('onMessage: ', `${title} ${body}`)
      alert(`${title} ${body}`)
    })
  }
})