I'm trying to use Google Cloud Messaging to notify users when there is new data to receive from the server. Sending Messages using GCM is defined as:
To send a message, the application server issues a POST request to https://android.googleapis.com/gcm/send.
Is it possible to send this HTTP POST request from the android application? I've tried to implement this using the method's I've been using successfully to POST to my server hosted by MongoLab. My attempt is as follows:
input_json.put("registration_ids", RegistrationIDs);
input_json.put("data", data);
param = new StringEntity(input_json.toString());
HttpParams httpParams = new BasicHttpParams();
int some_reasonable_timeout = (int) (20 * DateUtils.SECOND_IN_MILLIS);
HttpConnectionParams.setConnectionTimeout(httpParams, some_reasonable_timeout);
HttpConnectionParams.setSoTimeout(httpParams, some_reasonable_timeout);
HttpClient httpClient = new DefaultHttpClient(httpParams);
HttpPost request = new HttpPost(url);
request.setEntity(param);
request.setHeader("Content-type", "application/json");
request.setHeader("Authorization", API_KEY);
HttpResponse response = httpClient.execute(request);
StatusLine status = response.getStatusLine();
if (status.getStatusCode() == HttpStatus.SC_OK){
ResponseHandler<String> responseHandler = new BasicResponseHandler();
result = responseHandler.handleResponse(response);
}
I do not receive any HTTP errors or a response from the gcm server so I don't really know where to go from here. Thanks for your help.
