I'm using Firebase Cloud Messaging for IOS and Android.
I want to send message to topic in certain time
considering local time zone.
Is it real by using API?
I know that it's real by using custom scheduler and storing user time zone, but I'm looking for easy way.
Asked
Active
Viewed 4,453 times
3

Anton Podolskiy
- 35
- 1
- 6
-
You *can* schedule messages in the [notifications composer panel in the Firebase console](https://console.firebase.google.com/u/0/project/_/notification/compose), and you can select for them to be delivered in the user's timezone there. But there is no option in the Firebase Cloud Messaging API to schedule the delivery of messages. Messages sent through the API are delivered as soon as possible after you send them. See https://stackoverflow.com/questions/39640469/fcm-schedule-delivery-date-or-time-of-push-notification. – Frank van Puffelen Jun 23 '18 at 14:15
1 Answers
2
You can schedule messages in the notifications composer panel in the Firebase console, and you can select for them to be delivered in the user's timezone there.
But there is no option in the Firebase Cloud Messaging API to schedule the delivery of messages. Messages sent through the API are delivered as soon as possible after you send them. See FCM Schedule delivery date or time of push notification.

Frank van Puffelen
- 565,676
- 79
- 828
- 807