skip to Main Content

I am using googleapis for sending push notifications using this api https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages/send?authuser=0

I want to know whether google store the push notifications sent by this API from my web application to my mobile app.

Asking this question because users data is private and they don’t want to store their data on any of the servers even the timings of the API call.

Please help.

2

Answers


  1. Assuming that every device could be offline, if you send a message, this message should be stored somewhere and then be delivered to the device after it has connected to the internet

    Login or Signup to reply.
  2. I want to know whether Google stores the push notifications sent by this API from my web application to my mobile app.

    Yes, the Android OS can store the notifications on the mobile device in a section called "Notification History". By default, this section is disabled. So you need to explicitly enable it in order to have the notifications history active, and as far as I know, this section only stores the past 24 hours of notifications.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search