You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, thanks for the great work.
I quite don't understand - is that possible to subscribe to topics? Or that is an FCM specific feature?
What I'm looking for is ability to subscribe to some topic and then sending notifications to each device subscribed to that topic like:
default_app=firebase_admin.initialize_app()
# Create a messagemessage=messaging.Message(
notification=messaging.Notification(
title="Title of the Notification",
body="Body of the Notification",
# image="https://kldscope.eu/favicon.png"
),
topic="some_topic"
)
# Send the messageresponse=messaging.send(message)
The text was updated successfully, but these errors were encountered:
Hey, thanks for the great work.
I quite don't understand - is that possible to subscribe to topics? Or that is an FCM specific feature?
What I'm looking for is ability to subscribe to some topic and then sending notifications to each device subscribed to that topic like:
The text was updated successfully, but these errors were encountered: