Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GCM client for Desktop

Is there any way to login into a GCM server and receive messages from a Desktop Windows C++ application? I want to be able to login into my GCM server using some kind of C++ GCM client.

Thanks in advance,

like image 209
Didac Perez Parera Avatar asked Jun 12 '26 03:06

Didac Perez Parera


1 Answers

GCM Client

SEE ALSO

Getting Started GCM Server A GCM client is a GCM-enabled app that runs on an Android device. To write your client code, we recommend that you use the new GoogleCloudMessaging APIs. The client helper library that was offered in previous versions of GCM still works, but it has been superseded by the more efficient GoogleCloudMessaging APIs.

A full GCM implementation requires both a client implementation and a server-side implementation. For a step-by-step guide to creating a complete sample implementation that includes both client and server, see Getting Started.

I think it is designed for android device. Probably you can hack and install a whole android somewhere but, buy is easier in this way:

Write an Android client as google expect to a cheap phone (20$) When you receive message send it over wifi to your desktop Apache server via HTTP POST, and problem solved, simple :)