1

In FB Console, I can schedule the message to be sent at later time.

Is this possible to do with HTTP POST from my server?

Something like this:

 {
  "to" : "/topics/news",
  "at": "2016-01-13T14:55",
  "data" : {
    "message": "sync"
  }
 }
AL.
  • 36,815
  • 10
  • 142
  • 281
Rastio
  • 1,506
  • 1
  • 13
  • 18

1 Answers1

1

Unfortunately, as of the moment, no such parameter exists that can be used to set when a Push Notification will be sent. It is only available when using the Firebase Console or if you implement the time delay via your own App Server.

AL.
  • 36,815
  • 10
  • 142
  • 281