Suche…


Einführung

Dies kann mit zwei Methoden mit HTTP-Post-Request durchgeführt werden , wobei das Firebase Admin SDK auf Ihrem Server ausgeführt wird. Hier werde ich beide besprechen.

Firebase Cloud Messaging HTTP-Protokoll

Von Ihrer Serveranfrage bis zum Link unten, um die Benachrichtigung mit einigen Anforderungsparametern zu senden

https://fcm.googleapis.com/fcm/send

Fügen Sie während der Anforderung Kopfzeilen wie folgt hinzu

Authorization    key=<Your_key_from_the_console>
Content-Type     application/json

Der Hauptteil der Anfrage ist unterschiedlich

{
  "to" : <tokens or the topic>,
  "notification" : {
    "title":"This is a test title",
    "body":"This is the body"
  },
  "data": {
      //whatever key value payer you need to send  
  }
}

Die to-Parameter benötigen ein Array von Token wie

["token1","token2",..........]

oder ein einzelnes Token wie

"token"

oder einen Themennamen, der mit / topic / like beginnt

"/topic_name/"

Für Bedingungen mit mehreren Themen verwenden Sie || und && Operatoren mögen

"/topic_name/ && /topic2/"

Verwenden des Admin-SDK (Node js)

Initialisieren Sie zunächst das Firebase-SDK und das Admin-SDK

const functions = require('firebase-functions');
const admin = require('firebase-admin');

admin.initializeApp({
  credential: admin.credential.cert({
        //your admin credential certificate generated from the console. Follow this [link][1].
    }),
  databaseURL: "https:///<PROJECT_NAME>.firebaseio.com"
});

Erstellen Sie eine Payload-JSON-Zeichenfolge wie im ersten Beispiel.

var payload = {
              notification: {
                title: "Title of the notification,
                body: "Body of the notification",
              },
              data:{
                //required key value pair
              }
            };

Rufen Sie dann verschiedene Sendemethoden auf, um die Benachrichtigung zu senden.

Zum Thema

admin.messaging().sendToTopic("/topic/", payload)
              .then(function(response) {
                console.log("Successfully sent message:", response);
              })
              .catch(function(error) {
                console.log("Error sending message:", error);
              });
            });

Für Gerät

admin.messaging().sendToDevice(token, payload).then(response=>{
                       response.results.forEach((result, index) => {
                        const error = result.error;
                        if (error) {
                          console.error('Failure sending notification to', tokens, error);
                        } else{
                          console.log('Sucessfully sent to '+tokens);
                        }
                      });


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow