@@ -111,7 +111,7 @@ func sendAll(ctx context.Context, client *messaging.Client) {
111
111
registrationToken := "YOUR_REGISTRATION_TOKEN"
112
112
113
113
// [START send_all]
114
- // Create a list containing up to 100 messages.
114
+ // Create a list containing up to 500 messages.
115
115
messages := []* messaging.Message {
116
116
{
117
117
Notification : & messaging.Notification {
@@ -142,7 +142,7 @@ func sendAll(ctx context.Context, client *messaging.Client) {
142
142
143
143
func sendMulticast (ctx context.Context , client * messaging.Client ) {
144
144
// [START send_multicast]
145
- // Create a list containing up to 100 registration tokens.
145
+ // Create a list containing up to 500 registration tokens.
146
146
// This registration tokens come from the client FCM SDKs.
147
147
registrationTokens := []string {
148
148
"YOUR_REGISTRATION_TOKEN_1" ,
@@ -170,7 +170,7 @@ func sendMulticast(ctx context.Context, client *messaging.Client) {
170
170
171
171
func sendMulticastAndHandleErrors (ctx context.Context , client * messaging.Client ) {
172
172
// [START send_multicast_error]
173
- // Create a list containing up to 100 registration tokens.
173
+ // Create a list containing up to 500 registration tokens.
174
174
// This registration tokens come from the client FCM SDKs.
175
175
registrationTokens := []string {
176
176
"YOUR_REGISTRATION_TOKEN_1" ,
0 commit comments