首先,我生成了一个FCM令牌并存储在Firestore中。之后,我编写了一个云功能,以基于FCM令牌发送通知。我部署了云功能,它说成功地发送了具有状态确定的通知。但是它没有在移动设备中显示。我的index.js是
'use strict';
const functions = require('firebase-functions');
const Firestore = require('@google-cloud/firestore');
const admin = require('firebase-admin');
const firestore = new Firestore();
const db = admin.firestore();
admin.initializeApp(functions.config().firebase);
exports.hellouser = functions.firestore
.document('users/{token}')
.onWrite(event =>{
var document = event.data.data();
console.log("tokens",document);
var token = ['cdNN0AbYKU0:APA91bEyL0zo3zwHZD8H43Vp7bxAfYgehlVI8LrKktPO2eGuByVDdioysIGxHe5wocwq8ynxRToJPpOve_M59YY_MIRbWLnF9AIgoTwJORXZbw6VBw7']// this is my FCM token.
if(
const payload = {
notification: {
title: "Message",
body: "hi hello",
sound: "default"
}
};
return admin.messaging().sendToDevice(token, payload).then((response)=> {
console.info("Successfully sent notification")
}).catch(function(error) {
console.warn("Error sending notification " , error)
});
});
如何基于FCMToken发送通知。
如果是您使用的确切代码,请检查if(
附近的语法。这可能会对您有所帮助。
下一步编写一些代码以通过您的response
对象。Firebase可能会带您的令牌并有效载荷,处理它们并返回200 OK响应,但是在响应中,您会遇到错误。
响应具有这样的一般结构:
{ results:
[ { //stuff related to one token },{ //stuff related to one token } ],
canonicalRegistrationTokenCount: 0,
failureCount: 1,
successCount: 0,
multicastId: SOME_LONG_NUMBER }
请记住,response.results
数组的每个消息的状态与您 token
数组。
您可以在firebase文档中查看所有可能的错误。
如果response.failureCount > 0
,则没有发送消息,并且您应该在response.results
中获得相应的错误。
也了解options
变量。options.priority
必须是'high'
,以确保快速消息传递。
也许这会有所帮助。