如何将FCM推送通知发送到多个主题



我正在使用PHP服务器发送FCM推送通知。我想知道如何同时将推送通知发送到多个主题。

这是我的代码。

function sendPush($topic,$msg){
$API_ACCESS_KEY = '...';
$msg = array
(
    'msg' => $msg
);
$fields = array('to' => '/topics/' . $topic, 'priority' => 'high', 'data' => $msg);
$headers = array
(
'Authorization: key=' . $API_ACCESS_KEY,
'Content-Type: application/json'
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://fcm.googleapis.com/fcm/send');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
$pushResult = curl_exec($ch);
curl_close($ch);
}

您使用condition键发送到多个主题。

例如:

{
  "condition": "'dogs' in topics || 'cats' in topics",
  "priority" : "high",
  "notification" : {
    "body" : "This is a Firebase Cloud Messaging Topic Message!",
    "title" : "FCM Message",
  }
}

这将将消息发送给订阅的设备"狗"或"猫"。

来自FCM文档的相关报价:

要发送到多个主题的组合,应用程序服务器将条件键设置为指定目标主题的布尔条件。

请注意,您仅限于2个布尔条件,这意味着您可以将一条消息发送到最多3个主题。

update :现在您可以包含5个主题。

您可以在条件表达中最多包含五个主题,并且 支持括号。支持的操作员:&& ,,!。注意 使用!:

阅读文档:https://firebase.google.com/docs/cloud-messaging/send-message

相关内容

  • 没有找到相关文章

最新更新