firebase / firebase-admin-python

Firebase Admin Python SDK
https://firebase.google.com/docs/admin/setup
Apache License 2.0
1.03k stars 320 forks source link

FR: Channel ID for Android O #151

Closed playmean closed 5 years ago

playmean commented 6 years ago

Need an feature to send notification for specified channel_id. For example:

message = messaging.Message(
    android=messaging.AndroidConfig(
        ttl=datetime.timedelta(seconds=3600*6),
        priority="high",
        notification=messaging.AndroidNotification(
            title="SUPER TITLE",
            body="COLORED MESSAGE"
        ),
        channel_id="timetable"
    ),
    topic="timetable"
)
hiranya911 commented 6 years ago

@sampson-chen Is this something we can support in the back-end?