I have an iOS app that integrated with Firebase Cloud Messaging to send push notifications from. I know that Firebase saves history of all sent notifications. Is there a way for each specific device running the app to fetch its own history of sent notifications? I need to do it on client side, not on server.
Asked
Active
Viewed 5,649 times
1 Answers
4
There is currently no API to retrieve details of all the sent notifications with FCM (see this and this).
The idea is still feasible, however, you'll have to store the logs/history on your own, in your App Server. From there, you could setup your app to retrieve the details that only correspond to the device.

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