How to subscribe to events over http in firebase messaging service?

Viewed 21

As far as I understand for different mobile devices, firebase messaging service uses different protocols like web push, ans, google play services. But is there a way to notify non mobile device using this service?

1 Answers

Delivery of messages over Firebase Cloud Messaging is only supported to the SDKs listed in the documentation here, currently iOS, Android and Web. There is no documentation for the wire protocol that is used to deliver messages to these clients.

Also see these previous questions asking for delivery to Windows, macOS, and Linux:

Related