So i'm migrating to FCM HTTP v1 to send notification. But does it comes with scheduled notification configuration?
I want to send notification, for example like one hour from now (for use case like reminder).
In earlier version, like exampled here, you can just provide configuration like this:
{
"to": "/topics/discount-offers",
"priority": "high",
"data" : {
"title" : "TITLE_HERE",
"message" : "MESSAGE_HERE",
"isScheduled" : "true",
"scheduledTime" : "2019-12-13 09:41:00"
}
}
But after reading the documentation, I don't think there's variable to configure scheduled notification.