Improvements to Google Cloud Messaging for Chrome docs.
[chromium-blink-merge.git] / chrome / common / extensions / docs / templates / articles / gcm_server.html
blob6b40e3877ecc9c6e6e6c7ed924adaee17fa67a47
1 <meta name="doc-family" content="apps">
2 <h1>API Reference for GCM service</h1>
4 <p>
5 The <a href="cloudMessaging.html">Google Cloud Messaging for Chrome</a> service
6 sends messages to users of a Chrome packaged app.
7 The service handles all aspects of queueing and delivering messages.
8 To use the service,
9 you must agree to the
10 <a href="gcm_tos.html">Google Cloud Messaging for Chrome API Terms of Service</a>.
11 </p>
13 <p>Messages must conform to these constraints:</p>
15 <ul>
16 <li><strong>Maximum payload length:</strong> 256 bytes</li>
17 <li><strong>Maxium subchannels:</strong> 4</li>
18 <li><strong>Maximum API requests per day:</strong> 10,000</li>
19 </ul>
21 <h2 id="libraries">Google API client libraries</h2>
23 <p>
24 You may use the REST interface defined here
25 to access Google Cloud Messaging for Chrome from your application.
26 We also offer Google API client libraries for a number
27 of popular programming languages that can be used to access the API.
28 For more information, see
29 <a href="https://developers.google.com/api-client-library">https://developers.google.com/api-client-library</a>.
30 </p>
32 <h2 id="insert">Insert method</h2>
34 <p>
35 The <code>gcm_for_chrome.messages.insert</code>
36 method sends a message to your app or extension user.
37 </p>
39 <h2 id="authorization">Authentication</h3>
41 <p>
42 Authentication is required to send messages to users.
43 <a href="https://developers.google.com/accounts/docs/OAuth2WebServer">Using OAuth 2.0 for Web Server Applications</a>
44 describes this in greater detail.
45 </p>
47 <h3 id="url">URL</h3>
49 <p>
50 The URL used to obtain access to the GCM for Chrome service:
51 <code>https://accounts.google.com/o/auth2/auth</code>
52 </p>.
54 <h3 id="parameters">Required parameters</h3>
55 <p>
56 The required set of query string parameters are:
57 </p>
59 <table>
60 <tr>
61 <th scope="col">Parameter</th>
62 <th scope="col">Description</th>
63 </tr>
64 <tr>
65 <td><code>client_id</code></td>
66 <td>Indicates the app or extension client that is making the request.
67 Obtained from the <a href="https://code.google.com/apis/console/">Google APIs console</a>;
68 the parameter value must exactly match the client ID shown
69 in the console.
70 </td>
71 </tr>
72 <tr>
73 <td><code>client_secret</code></td>
74 <td>The client secret obtained during registration in
75 <a href="https://code.google.com/apis/console/">Google APIs console</a>.</td>
76 </tr>
77 <tr>
78 <td><code>refresh_token</code></td>
79 <td>Token associated with app or extension used to obtain new access token.</td>
80 </tr>
81 <tr>
82 <td><code>grant_type</code></td>
83 <td>The <code>authorization_code</code> value of <code>refresh_token</code>.</td>
84 </tr>
85 </table>
87 <h3 id="response">Response</h3>
89 The authorization response includes:
91 <table>
92 <tr>
93 <th scope="col">Field</th>
94 <th scope="col">Description</th>
95 </tr>
96 <tr>
97 <td><code>access_token</code></td>
98 <td>Valid token required to access the GCM for Chrome service.</td>
99 </tr>
100 <tr>
101 <td><code>expires_in</code></td>
102 <td>Time until access token expires in seconds.</td>
103 </tr>
104 <tr>
105 <td><code>token_type</code></td>
106 <td>The returned token type, <code>Bearer</code>.</td>
107 </tr>
108 </table>
110 <h2 id="request">Message request</h2>
112 <h3 id="http">HTTP request</h3>
114 <p><code>Post https://www.googleapis.com/gcm_for_chrome/v1/messages</code></p>
116 <h3 id="body">Request body</h3>
118 In the request body, supply:
120 <table>
121 <tr>
122 <th scope="col">Parameter</th>
123 <th scope="col">Description</th>
124 </tr>
125 <tr>
126 <td><code>Content-Type</code></td>
127 <td>The request body content type, <code>application/json</code>.</td>
128 </tr>
129 <tr>
130 <td><code>Authorization</code></td>
131 <td><code>Bearer</code> HTTP header including access token, for example,
132 <code>Bearer 1/fFBGRNJru1FQd44AzqT3Zg</code>.</td>
133 </tr>
134 <tr>
135 <td><code>channelId</code></td>
136 <td>The app or extension channel ID required to push messages back to the app or extension.</td>
137 </tr>
138 <tr>
139 <td><code>subchannelId</code></td>
140 <td>The subchannel to send the message on; only values 0-3 are valid.</td>
141 </tr>
142 <tr>
143 <td><code>paylooad</code></td>
144 <td>The message body (up to 256 bytes).</td>
145 </tr>
146 </table>
148 <p class="backtotop"><a href="#top">Back to top</a></p>