Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Guide to mobile PUSH notifications from PHP

  1. #1
    Junior Member
    Join Date
    Jun 2013
    Location
    Europe
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Guide to mobile PUSH notifications from PHP

    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:

    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);
    As you can see its really easy.
    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.


  2. #2
    Junior Member
    Join Date
    Jun 2013
    Location
    Europe
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Guide to mobile PUSH notifications from PHP

    Update 06.06.2013
    Jeapie Iphone app is available on AppStore

Similar Threads

  1. Replies: 4
    Last Post: May 20th, 2013, 09:14 PM
  2. Cannot push onto a stack
    By colerelm in forum What's Wrong With My Code?
    Replies: 1
    Last Post: April 25th, 2013, 06:20 AM
  3. Push Based Mechanism
    By mkarthik90 in forum Java Theory & Questions
    Replies: 1
    Last Post: February 18th, 2012, 12:51 PM
  4. Replies: 0
    Last Post: July 26th, 2011, 10:31 PM
  5. [SOLVED] Implementing push button
    By IDK12 in forum AWT / Java Swing
    Replies: 2
    Last Post: July 10th, 2009, 10:13 AM