I was following this guide to setup Web Push notifications in our web app: https://blog.elmah.io/how-to-send-push-notifications-to-a-browser-in-asp-net-core/
But unrelated to ASP.NET core, I would like to know if it is possible if these push notifications can be received across multiple devices, since I cannot seem to get this working (yet) during my first tests.
Let's say:
- A user logs in into browser, for example Chrome (with same user, both mobile and desktop)
- Registers for web push notifications on our app (on desktop)
- we send a notification to the registered user
--> Can push notifications both be received on mobile AND desktop?
--> Is that registration linked to a device, or linked to the logged in user from browser? (or other?)