firebase
Push-уведомление с настраиваемого сервера
Поиск…
Вступление
Это можно сделать, используя 2 метода с запросом HTTP Post , с SDK Firebase admin на вашем сервере. Здесь я обсужу их обоих.
Firebase Cloud Messaging HTTP Protocol
От вашего запроса сервера к ссылке ниже, чтобы отправить уведомление с некоторыми параметрами запроса
https://fcm.googleapis.com/fcm/send
При запросе добавить заголовки следующим образом
Authorization key=<Your_key_from_the_console>
Content-Type application/json
Тело запроса изменяется
{
"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
}
}
Параметр to to принимает Array из токенов типа
["token1","token2",..........]
или один токен
"token"
или название темы, начинающееся с / topic / like
"/topic_name/"
Для нескольких условий использования темы с использованием || и && операторам
"/topic_name/ && /topic2/"
Использование Admin SDK (Node js)
Сначала инициализируйте SDK firebase и 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"
});
Создайте строку JSON полезной нагрузки, как в первом примере.
var payload = {
notification: {
title: "Title of the notification,
body: "Body of the notification",
},
data:{
//required key value pair
}
};
Затем вызовите различные методы отправки, чтобы отправить уведомление.
Для темы
admin.messaging().sendToTopic("/topic/", payload)
.then(function(response) {
console.log("Successfully sent message:", response);
})
.catch(function(error) {
console.log("Error sending message:", error);
});
});
Для устройства
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
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow