我正在尝试将FCM集成到我的flutter应用程序中。我已经为Android和iOS完成了所有连接设置。当我借助云消息传递测试通知功能发送通知时,通知会在设备中正确接收。
我编写了一个功能脚本,该脚本可以在给定时间自动发送通知。当我在大约两周后部署该功能时,它可以按预期几乎运行。 大多数客户正在收到应有的通知。但是,过去几天,通知已完全停止到达客户端。
我在firebase控制台中的功能日志建议发送了通知,但报告显示我的所有用户都没有收到该通知。
我确定我编写有效负载的方式有问题。
这是我的代码
exports.sendFollowerNotification = functions.database.ref('/notifications/{notificationID}')
.onCreate(async (snapshot, context) => {
const notificationID = context.params.notificationID;
const notificationData = snapshot.val();
const getDeviceTokensPromise = admin.database()
.ref('/DeviceTokens').orderByChild("subscribed").equalTo("1").once('value');
//list all tokens in a array
let tokensSnapshot;
let tokens;
const results = await Promise.all([getDeviceTokensPromise]);
tokensSnapshot = results[0];
if (!tokensSnapshot.hasChildren()) {
return console.log('There are no notification tokens to send to.');
}
console.log('There are', tokensSnapshot.numChildren(), 'tokens to send notifications to.');
tokens = Object.keys(tokensSnapshot.val());
const payload = {
notification: {
body: notificationData.body,
title: notificationData.title,
click_action: 'FLUTTER_NOTIFICATION_CLICK'
},
data: {
id: '1',
status: 'done'
},
};
//loop through each element in the /DeviceTokens node and get data for each entry with the
getTheTokens function.
for (var tokenDetails in tokens) {
getTheTokens(tokens[tokenDetails]);
}
//getTheTokens function
function getTheTokens() {
var refKey = admin.database().ref('/DeviceTokens').child(tokens[tokenDetails]);
refKey.once('value', (snapshot) => {
var theToken = snapshot.child('/device_token').val();
try {
const response = admin.messaging().sendToDevice(theToken, payload);
// gives proper feedback to console.
console.log('Notification sent successfully');
} catch (err) {
console.log(err);
}
});
}
});
我正在使用RealTime数据库,其中将设备令牌保存到连接到系统的任何设备上。我有一个名为 DeviceTokens 的文档。我还有另一个文档通知,其中存储了通知。 当在通知中生成一个条目时,该功能应进行识别,然后遍历所有设备令牌并将该通知发送给预订该通知的所有设备。
我的Firebase控制台日志打印出成功发送通知,以显示DeviceTokens中存在的设备令牌数量。但是,执行该功能后会显示错误。
sendFollowerNotification
Error: Error while making request: Client network socket disconnected before secure TLS connection was established.
Error code: ECONNRESET at FirebaseAppError.FirebaseError [as constructor (/workspace/node_modules/firebase-admin/lib/utils/error.js:42:28)
at FirebaseAppError.PrefixedFirebaseError [as constructor] (/workspace/node_modules/firebase-admin/lib/utils/error.js:88:28)
at new FirebaseAppError (/workspace/node_modules/firebase-admin/lib/utils/error.js:123:28)
at /workspace/node_modules/firebase-admin/lib/utils/api-request.js:209:19
at process._tickCallback (internal/process/next_tick.js:68:7)
和
sendFollowerNotification
Error: Process exited with code 16
at process.on.code (/layers/google.nodejs.functions-framework/functions-framework/node_modules/@google-cloud/functions-framework/build/src/invoker.js:271:38)
at process.emit (events.js:198:13)
at process.EventEmitter.emit (domain.js:448:20)
at process.exit (internal/process/per_thread.js:168:15)
at Object.logAndSendError (/layers/google.nodejs.functions-framework/functions-framework/node_modules/@google-cloud/functions-framework/build/src/logger.js:37:9)
at process.on.err (/layers/google.nodejs.functions-framework/functions-framework/node_modules/@google-cloud/functions-framework/build/src/invoker.js:268:22)
at process.emit (events.js:198:13)
at process.EventEmitter.emit (domain.js:448:20)
at emitPromiseRejectionWarnings (internal/process/promises.js:140:18)
at process._tickCallback (internal/process/next_tick.js:69:34)
我该如何解决?
答案 0 :(得分:0)
小技巧:
以防万一,您可以根据情况检查Firebase关于如何处理通知https://github.com/firebase/functions-samples/blob/master/fcm-notifications/functions/index.js
的信息答案 1 :(得分:0)
尝试检查您的规则可能已过期。 如果还行,我认为问题可能是新更新,现在您必须在执行任何操作之前初始化Firebase应用程序。 您必须将firebase核心添加到pubsec文件中,然后在执行任何firebase运算之前,只需导入firebase核心并通过
进行初始化 await Firebase.initializeApp();
也许可以。