In this document
This document provides a reference for the syntax used to pass messages back and forth in GCM. These messages fall into the following broad categories:
- Downstream messages
- Upstream messages
- Cloud Connection Server messages (XMPP)
- Downstream message error response codes (HTTP and XMPP)
The following sections describe the basic requirements for sending messages.
Downstream Messages
This is the message that a 3rd-party app server sends to a client app.
A downstream message includes the following components:
- Target: specifies the recipient of the message.
- Options: specifies attributes of the message.
- Payload: specifies additional content to be included in the message. Optional.
The syntax for each of these components is described in the tables below.
Sending a downstream message
This section gives the syntax for sending a downstream messages. For JSON, these messages can be either HTTP or XMPP. For plain text, these messages can only be HTTP.
Downstream HTTP or XMPP messages (JSON)
The following table lists the targets, options, and payload for HTTP or XMPP JSON messages.
Parameter | Protocol | Usage | Description |
---|---|---|---|
Targets | |||
to |
XMPP | Required, string | This parameter specifies the recipient of a message. The value must be a registration ID or notification key. This parameter is used in XMPP in place of |
registration_ids |
HTTP | Required if notification_key not present, string array |
This parameter specifies the list of devices (registration IDs) receiving the message. It must contain at least 1 and at most 1000 registration IDs. Multicast messages (sending to more than 1 registration IDs) are allowed using HTTP JSON format only. This parameter or |
notification_key |
HTTP | Required if registration_ids not present, string |
This parameter specifies the mapping of a single user to multiple registration IDs associated with that user. This allows a 3rd-party app server to send a single message to multiple app instances (typically on multiple devices) owned by a single user. A 3rd-party app server can use This parameter or See User Notifications for details. |
Options | |||
message_id |
XMPP | Required, string | This parameter uniquely identifies a message in an XMPP connection. |
collapse_key |
HTTP, XMPP | Optional, string | This parameters identifies a group of messages (e.g., with
Note that there is no guarantee of the order in which messages get sent. Messages with collapse key are also called send-to-sync messages messages. Note: A maximum of 4 different collapse keys is allowed at any given time. This means a GCM connection server can simultaneously store 4 different send-to-sync messages per client app. If you exceed this number, there is no guarantee which 4 collapse keys the GCM connection server will keep. |
delay_while_idle |
HTTP, XMPP | Optional, JSON boolean | When this parameter is set to true , it indicates that the message should not be
sent until the device becomes active.
The default value is |
time_to_live |
HTTP, XMPP | Optional, JSON number | This parameter specifies how long (in seconds) the message should be kept in GCM storage if the device is offline. The maximum time to live supported is 4 weeks. The default value is 4 weeks. |
delivery_receipt_
|
XMPP | Optional, JSON boolean | This parameter lets 3rd-party app server request confirmation of message delivery. When this parameter is set to The default value is |
restricted_package_
|
HTTP | Optional, string | This parameter specifies the package name of the application where the registration IDs must match in order to receive the message. |
dry_run |
HTTP | Optional, JSON boolean | This parameter, when set to The default value is |
Payload | |||
data |
HTTP, XMPP | Optional, JSON object | This parameter specifies the key-value pairs of the message's payload. There is no limit on the number of key-value pairs, but there is a total message size limit of 4kb. For instance, in Android, The key should not be a reserved word ( Values in string types are recommended. You have to convert values in objects or other non-string data types (e.g., integers or booleans) to string. |
Downstream HTTP messages (Plain Text)
The following table lists the syntax for targets, options, and payload in plain text downstream HTTP messages.
Parameter | Usage | Description |
---|---|---|
Targets | ||
registration _id |
Required, string | This parameter specifies the client apps (registration ID) receiving the message. Multicast messaging (sending to more than one registration ID) is allowed using HTTP JSON format only. |
Options | ||
collapse_key |
Optional, string | See table 1 for details. |
delay_while_idle |
Optional, boolean or number | See table 1 for details. |
time_to_live |
Optional, number | See table 1 for details. |
restricted_package_name |
Optional, string | See table 1 for details. |
dry_run |
Optional, boolean | See table 1 for details. |
Payload | ||
data.<key> |
Optional, string | This parameter specifies the key-value pairs of the message's payload. There is no limit on the number of key-value parameters, but there is a total message size limit of 4kb. For instance, in Android, The key should not be a reserved word ( |
Interpreting a Downstream Message Response
This section describes the syntax of a response to a downstream message. A client app or the GCM Connection Server sends the response to 3rd-party app server upon processing the message request.
Interpreting a downstream HTTP message response
The 3rd-party app server should look at both the message response header and the body to interpret the message response sent from the GCM Connection Server. The following table describes the possible responses.
Response | Description |
---|---|
200 | Message was processed successfully. The response body will contain more details about the message status, but its format will depend whether the request was JSON or plain text. See table 4 for more details. |
400 | Only applies for JSON requests. Indicates that the request could not be parsed as JSON, or it contained invalid fields (for instance, passing a string where a number was expected). The exact failure reason is described in the response and the problem should be addressed before the request can be retried. |
401 | There was an error authenticating the sender account. Troubleshoot |
5xx | Errors in the 500-599 range (such as 500 or 503) indicate that there was
an internal error in the GCM server while trying to process the request, or that
the server is temporarily unavailable (for example, because of timeouts). Sender
must retry later, honoring any Retry-After header included in the
response. Application servers must implement exponential back-off.
Troubleshoot |
The following table lists the fields in a downstream message response body (JSON).
Parameter | Usage | Description |
---|---|---|
multicast_id |
Required, number | Unique ID (number) identifying the multicast message. |
success |
Required, number | Number of messages that were processed without an error. |
failure |
Required, number | Number of messages that could not be processed. |
canonical_ids |
Required, number | Number of results that contain a canonical registration ID. See the Overview for more discussion of this topic. |
results |
Optional, array object | Array of objects representing the status of the messages processed. The
objects are listed in the same order as the request (i.e., for each registration
ID in the request, its result is listed in the same index in the response).
|
Parameter | Usage | Description |
---|---|---|
id |
Required, string | This parameter specifies the unique message ID that GCM server processed successfully. |
registration_id |
Optional, string | This parameter specifies the canonical registration ID for the client app that the message was processed and sent to. Sender should replace the registration ID with this value on future requests, otherwise, the messages might be rejected. |
Parameter | Usage | Description |
---|---|---|
Error |
Required, string | This parameter specifies the error value while processing the message for the recipient. See table 11 for details. |
Interpreting a downstream XMPP message response
The following table lists the fields that appear in a downstream XMPP message response.
Parameter | Usage | Description |
---|---|---|
from |
Required, string | This parameter specifies who sent this response. The value is the registration ID of the client app. |
message_id |
Required, string | This parameter uniquely identifies a message in an XMPP connection. The value is a string that uniquely identifies the associated message. |
message_type |
Required, string | This parameter specifies an 'ack' or 'nack' message from XMPP (CCS) to the 3rd-party app server. If the value is set to |
error |
Optional, string | This parameter specifies an error related to the downstream message. It is set when the
message_type is nack . See table 6 for details. |
error_description |
Optional, string | This parameter provides descriptive information for the error. It is set
when the message_type is nack . |
Upstream Messages (XMPP)
An upstream message is a message the client app sends to the 3rd-party app server. Currently only CCS (XMPP) supports upstream messaging.
Interpreting an upstream XMPP message
The following table describes the fields that appear in an upstream XMPP message.
Parameter | Usage | Description |
---|---|---|
from |
Required, string | This parameter specifies who sent the message. The value is the registration ID of the client app. |
category |
Required, string | This parameter specifies the application package name of the client app that sent the message. |
message_id |
Required, string | This parameter specifies the unique ID of the message. |
data |
Optional, string | This parameter specifies the key-value pairs of the message's payload. |
Sending an upstream XMPP message response
The following table describes the response that 3rd-party app server is expected to send to XMPP (CCS) in response to an upstream message it (the app server) received.
Parameter | Usage | Description |
---|---|---|
to |
Required, string | This parameter specifies the recipient of a response message. The value must be a registration ID of the client app that sent the upstream message. |
message_id |
Required, string | This parameter specifies which message the response is intended for. The value must be
the message_id value from the corresponding upstream message. |
message_type |
Required, string | This parameter specifies an ack message from a 3rd-party app server to CCS. |
Cloud Connection Server Messages (XMPP)
This is a message sent from XMPP (CCS) to a 3rd-party app server. Here are the primary types of messages that XMPP (CCS) sends to the 3rd-party app server:
- Delivery Receipt: If the 3rd-party app server included
delivery_receipt_requested
in the downstream message, XMPP (CCS) sends a delivery receipt when it receives confirmation that the device received the message. - Control: These CCS-generated messages indicate that action is required from the 3rd-party app server.
The following table describes the fields included in the messages CCS sends to a 3rd-party app server.
Parameter | Usage | Description |
---|---|---|
Common Field | ||
message_type |
Required, string | This parameter specifies the type of the CCS message: either delivery receipt or control. When it is set to When it is set to |
Delivery receipt-specific | ||
from |
Required, string | This parameter is set to gcm.googleapis.com , indicating that the
message is sent from CCS. |
message_id |
Required, string | This parameter specifies the original message ID that the receipt is intended for,
prefixed with dr2: to indicate that the message is a delivery receipt. A 3rd-party app
server must send an ack message with this message ID to acknowledge that it
received this delivery receipt. See table 9 for the 'ack' message format. |
category |
Optional, string | This parameter specifies the application package name of the client app that
receives the message that this delivery receipt is reporting. This is available when
message_type is receipt . |
data |
Optional, string | This parameter specifies the key-value pairs for the delivery receipt message. This is available
when the message_type is receipt .
|
Control-specific | ||
control_type |
Optional, string | This parameter specifies the type of control message sent from CCS. Currently, only |
Downstream message error response codes (HTTP and XMPP)
The following table lists the error response codes for downstream messages (HTTP and XMPP).
Error | HTTP Code | XMPP Code | Recommended Action |
---|---|---|---|
Missing Registration ID | 200 + error:MissingRegistration | INVALID_JSON |
Check that the request contains a registration ID (either in the
registration_id in a plain text message, or in the registration_ids in JSON). |
Invalid Registration ID | 200 + error:InvalidRegistration | BAD_REGISTRATION |
Check the format of the registration ID you pass to the server. Make sure it matches the registration ID the client app receives from registering with GCM. Do not truncate or add additional characters. |
Unregistered Device | 200 + error:NotRegistered | DEVICE_UNREGISTERED |
An existing registration ID may cease to be valid in a number of scenarios, including:
|
Invalid Package Name | 200 + error:InvalidPackageName | Make sure the message was addressed to a registration ID whose package name matches the value passed in the request. | |
Authentication Error | 401 | The sender account used to send a message couldn't be authenticated. Possible causes are:
|
|
Mismatched Sender | 200 + error:MismatchSenderId | BAD_REGISTRATION |
A registration ID is tied to a certain group of senders. When a client app registers for GCM, it must specify which senders are allowed to send messages. You should use one of those sender IDs when sending messages to the client app. If you switch to a different sender, the existing registration IDs won't work. |
Invalid JSON | 400 | INVALID_JSON |
Check that the JSON message is properly formatted and contains valid fields (for instance, making sure the right data type is passed in). |
Message Too Big | 200 + error:MessageTooBig | INVALID_JSON |
Check that the total size of the payload data included in a message does not exceed 4096 bytes. This includes both the the keys and the values. |
Invalid Data Key | 200 + error:
InvalidDataKey |
INVALID_JSON |
Check that the payload data does not contain a key (such as from or any value
prefixed by google ) that is used internally by GCM. Note that some words (such as collapse_key )
are also used by GCM but are allowed in the payload, in which case the payload value
will be overridden by the GCM value. |
Invalid Time to Live | 200 + error:InvalidTtl | INVALID_JSON |
Check that the value used in time_to_live is an integer representing a
duration in seconds between 0 and 2,419,200 (4 weeks). |
Bad ACK message | N/A | BAD_ACK |
Check that the 'ack' message is properly formatted before retrying. See table 9 for details. |
Timeout | 5xx or 200 + error:Unavailable | SERVICE_UNAVAILABLE |
The server couldn't process the request in time. Retry the same request, but you must:
Senders that cause problems risk being blacklisted. |
Internal Server Error | 500 or 200 + error:InternalServerError | INTERNAL_SERVER_
|
The server encountered an error while trying to process the request. You could retry
the same request following the requirements listed in "Timeout" (see row above). If the error persists, please
report the problem in the android-gcm group . |
Device Message Rate Exceeded | 200 + error:
DeviceMessageRate Exceeded |
DEVICE_MESSAGE_RATE |
The rate of messages to a particular device is too high. Reduce the number of messages sent to this device and do not immediately retry sending to this device. |
Connection Draining | N/A | CONNECTION_DRAINING |
The message couldn't be processed because the connection is draining. This happens because periodically, XMPP (CCS) needs to close down a connection to perform load balancing. Retry the message over another XMPP connection. |