Reputation: 2325
Is it possible to set up a Scheduled Push notification from the GCM server.
Example:
As I click a button i send an api call to the GCM server to send me a push after 30min.
Is that possible?
If yes, please guide me.
Thanks in advance.
Upvotes: 3
Views: 1494
Reputation: 393841
No, it's not possible. GCM server attempts to deliver the messages you send to it immediately.
If you want to schedule a message for delivery at a given time, schedule it in your server. i.e. make your server send it to GCM server after 30 minutes.
Upvotes: 4