Is there a Java library to simplify Google cloud messaging?

I am wondering if there is a library that provides an interface for easily sending messages through GCM?

Looking at the architectural overview, it seems that you need to do a lot of things yourself (open TCP connections, create HTTP requests, create JSON payload, implement exponential delay, handle various types of errors, etc.).

Of course, there is some basic implementation of this material that I missed, right?

+7
source share
2 answers

Yes, it is described on the demo page , and the source is here .

+8
source

Another option is to use a commercial service such as AirBop for server-side responsibility.

0
source

All Articles