mirror of
https://github.com/caronc/apprise.git
synced 2025-02-23 05:31:17 +01:00
FCM message size restrictions
This commit is contained in:
parent
21d7ef1ff4
commit
e40c83dfd1
@ -60,9 +60,12 @@ class NotifyFCM(NotifyBase):
|
||||
notify_url = \
|
||||
"https://fcm.googleapis.com/v1/projects/{project}/messages:send"
|
||||
|
||||
# You can only send up to 1000 reg ids per bulk message when using
|
||||
# the Firebase Cloud Messaging Service
|
||||
default_batch_size = 1000
|
||||
# The maximum length of the body
|
||||
body_maxlen = 160
|
||||
|
||||
# A title can not be used for SMS Messages. Setting this to zero will
|
||||
# cause any title (if defined) to get placed into the message body.
|
||||
title_maxlen = 0
|
||||
|
||||
# Define object templates
|
||||
templates = (
|
||||
|
Loading…
Reference in New Issue
Block a user