如何使fcm推送通知到期或设置生命周期?

时间:2017-11-23 06:15:01

标签: android push-notification firebase-cloud-messaging

我的应用程序将推送通知从服务器发送到多个用户设备。通知在我的应用场景中的特定时间段内有效。目前,所有通知都通过我的应用程序,但在给定的到期时间后我根本不发送此通知。 要发送给用户的代码。

   {
      "to":"REGISTRATION_ID",  // "to" replaces "registration_ids"
     "notification": {
        "title": "Portugal vs. Denmark”,
        "body”: "5 to 1”
      },
      "time_to_live":"600"
}

注意:“time_to_live”属性不起作用。

2 个答案:

答案 0 :(得分:2)

您应该将其设置为数字:

"time_to_live": 600

答案 1 :(得分:1)

您应根据此文档使用以下内容:Setting the lifespan of a message.

"android": {
  "ttl":"600s"
}

而不是

"time_to_live":"600"