mirror of
https://github.com/caronc/apprise.git
synced 2025-06-22 02:31:41 +02:00
FCM message size restrictions
This commit is contained in:
parent
21d7ef1ff4
commit
e40c83dfd1
@ -60,9 +60,12 @@ class NotifyFCM(NotifyBase):
|
|||||||
notify_url = \
|
notify_url = \
|
||||||
"https://fcm.googleapis.com/v1/projects/{project}/messages:send"
|
"https://fcm.googleapis.com/v1/projects/{project}/messages:send"
|
||||||
|
|
||||||
# You can only send up to 1000 reg ids per bulk message when using
|
# The maximum length of the body
|
||||||
# the Firebase Cloud Messaging Service
|
body_maxlen = 160
|
||||||
default_batch_size = 1000
|
|
||||||
|
# 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
|
# Define object templates
|
||||||
templates = (
|
templates = (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user