Hello.
If you are smartphone user - you know what is PUSH notifications and how useful they are.
Recently we published Java library for sending PUSH notifications into Jeapie mobile app (free client app).
Easy API, Java class already on GitHub, and also ready-to-use Android mobile application (iOS coming soon). You just install it and can send messages with API.
Example:
As you can see its really easy.String user = "userKey"; // required String token = "tokenKey"; // required String title = "messageTitle"; // optional String message = "messageBody"; // required String device = "userDevice"; // optional Integer priority = 0; // optional. can be -1, 0, 1 JeapieResponse response = JeapieService.send(user, token, title, message, device, priority);
iphone_overlay.jpg
You can find it on GitHub (search for jeapie). Cant post link
Also this class will be nice for educational purposes, because API is very easy and class's small and not complicated.