gpt4 book ai didi

ios - 我可以从 Firebase 云函数发送静默推送通知吗?

转载 作者:可可西里 更新时间:2023-11-01 03:50:37 26 4
gpt4 key购买 nike

是否可以从 Firebase Cloud Function 发送静默 APNs (iOS) 远程通知?如果是这样,如何做到这一点?我想在应用程序不在前台时向 iOS 应用程序实例发送数据,而不让用户看到通知。

我目前发送一条用户可以看到的通知:

const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);

exports.sendNotifications = functions.database.ref('/events/{pushId}').onWrite(event => {
const id = event.params.pushId

const payload = {
notification: {
title: 'An event has occurred!',
body: 'Please respond to this event.',
event_id: id
}
};

return admin.messaging().sendToTopic("events", payload);
});

我希望能够在没有视觉通知的情况下将该 id 发送到应用。

最佳答案

我想出了如何修改我的代码以成功发送静默通知。我的问题是我一直试图将 content_available 放在 payload 中,而实际上它应该放在 options 中。这是我的新代码:

const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);

exports.sendNotifications = functions.database.ref('/events/{pushId}').onWrite(event => {
const id = event.params.pushId

const payload = {
data: {
title: 'An event has occurred!',
body: 'Please respond to this event.',
event_id: id
}
};

const options = {
content_available: true
}

return admin.messaging().sendToTopic("events", payload, options);
});

在实现 application:didReceiveRemoteNotification:fetchCompletionHandleruserNotificationCenter:willPresent:withCompletionHandler 后,我在我的 iOS 设备上成功收到了静默通知。

关于ios - 我可以从 Firebase 云函数发送静默推送通知吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46058774/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com