21
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

FirebaseAdvent Calendar 2019

Day 4

Cloud FunctionsからPush通知を送信する

Last updated at Posted at 2019-12-03

この記事は Firebase Advent Calendar 2019 4日目 の記事になります。

今回はCloud FunctionsからPush通知を送信する方法に書きます。

FCMのPush通知について

FCMには 「トークンに対してPush通知を送信する」 方法と、 「トピックに対してPush通知を送信する」 の2種類があります。

使い分けとしては

  • トークンに対してPush通知を送信する

    • →ユーザー一人一人に割り当てられたトークンを使ってPush通知を送信する。ピンポイントで一人にPush通知を送信したりする場合に使用する
  • トピックに対してPush通知を送信する

    • →ユーザーが購読しているTopicに対してPush通知を送信する。ある特定のグループに対してPush通知を送信する場合によく使われる。

自分の経験上トピックに対してPush通知を送信するパターンは実装したことがないので、基本的にトークンに対してPush通知を送信することが一般的なのかもしれません。

Tokenに対してPush通知を送信する

トークンの取得方法は公式ドキュメントを参照ください。

ここで保存されたトークンを使ってPush通知を送信します。

    const payload = {
      notification: {
        title: "タイトル",
        badge: "1",
        sound: "default"
      }
    };

    const option = {
      priority: "high"
    };

    await admin.messaging().sendToDevice("トークン", payload, option);

これでPush通知が送信できます。

トピックに対して送信する

トピックの購読方法は公式ドキュメントを参照ください。

    const payload = {
      notification: {
        title: "タイトル",
        badge: "1",
        sound: "default"
      }
    };

    const option = {
      priority: "high"
    };

    await admin.messaging().sendToTopic("トピック名", payload, option);

以上です。

21
20
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?