| OLD | NEW |
| 1 <meta name="doc-family" content="apps"> | 1 <meta name="doc-family" content="apps"> |
| 2 <h1>API Reference for GCM service</h1> | 2 <h1>API Reference for GCM service</h1> |
| 3 | 3 |
| 4 <p> | 4 <p> |
| 5 The <a href="cloudMessaging.html">Google Cloud Messaging for Chrome</a> service | 5 The <a href="cloudMessaging">Google Cloud Messaging for Chrome</a> service |
| 6 sends messages to users of a Chrome App. | 6 sends messages to users of a Chrome App. |
| 7 The service handles all aspects of queueing and delivering messages. | 7 The service handles all aspects of queueing and delivering messages. |
| 8 To use the service, | 8 To use the service, |
| 9 you must agree to the | 9 you must agree to the |
| 10 <a href="gcm_tos.html">Google Cloud Messaging for Chrome API Terms of Service</a
>. | 10 <a href="gcm_tos">Google Cloud Messaging for Chrome API Terms of Service</a>. |
| 11 </p> | 11 </p> |
| 12 | 12 |
| 13 <p>Messages must conform to these constraints:</p> | 13 <p>Messages must conform to these constraints:</p> |
| 14 | 14 |
| 15 <ul> | 15 <ul> |
| 16 <li><strong>Maximum payload length:</strong> 256 bytes</li> | 16 <li><strong>Maximum payload length:</strong> 256 bytes</li> |
| 17 <li><strong>Maximum subchannels:</strong> 4</li> | 17 <li><strong>Maximum subchannels:</strong> 4</li> |
| 18 <li><strong>Maximum API requests per day:</strong> 10,000</li> | 18 <li><strong>Maximum API requests per day:</strong> 10,000</li> |
| 19 </ul> | 19 </ul> |
| 20 | 20 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 <td>The subchannel to send the message on; only values 0-3 are valid.</td> | 144 <td>The subchannel to send the message on; only values 0-3 are valid.</td> |
| 145 </tr> | 145 </tr> |
| 146 <tr> | 146 <tr> |
| 147 <td><code>payload</code></td> | 147 <td><code>payload</code></td> |
| 148 <td>The message body (up to 256 bytes). This should not include any | 148 <td>The message body (up to 256 bytes). This should not include any |
| 149 personally identifiable information.</td> | 149 personally identifiable information.</td> |
| 150 </tr> | 150 </tr> |
| 151 </table> | 151 </table> |
| 152 | 152 |
| 153 <p class="backtotop"><a href="#top">Back to top</a></p> | 153 <p class="backtotop"><a href="#top">Back to top</a></p> |
| OLD | NEW |