Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FCM Schedule delivery date or time of push notification

I have working with FCM console to send push notification and it has an option to schedule the delivery date.

But in the references, this API is not documented as an option. I need to know if its possible to push a notification with predefined delivery date through a POST request.

like image 523
Herbey Avatar asked Sep 22 '16 13:09

Herbey


People also ask

How does FCM push notification work?

Using FCM, you can notify a client app that new email or other data is available to sync. You can send notification messages to drive user re-engagement and retention. For use cases such as instant messaging, a message can transfer a payload of up to 4000 bytes to a client app.

Does FCM guarantee delivery?

FCM does not guarantee the order of delivery. Some typical use cases of non-collapsible messages are chat messages or critical messages.

What is TTL in FCM?

The TTL message attribute is used to specify expiration metadata about a message. This allows you to specify the amount of time that the push notification service, such as Apple Push Notification Service (APNs) or FCM, has to deliver the message to the endpoint.


1 Answers

If you're looking for a public API of FCM for a scheduled push or a payload parameter where you can set the push date, unfortunately, there's nothing like it as of the moment.

You must implement your own App Server and implement the scheduled push yourself (also mentioned it here).

like image 80
AL. Avatar answered Sep 22 '22 12:09

AL.