Skip to content

mosza16/LineNotify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LineNotify JDK 1.8 MAVEN 3.3.9

Line Notify API for JAVA Example GET START https://notify-bot.line.me

   public static void main(String[] args) {
        final String USER_TOKEN = "Your API Token";
        LineNotify ln = new LineNotify(USER_TOKEN);
        try{
            ln.notifyMe("Hello World");
        }catch(IOException ex){
            System.err.println(ex);
        }
    }     

This method for sending the messages to your Line Notify

    boolean notifyMe(String message)
    // return true when success status 200

This method for sending the messages and stickers to your Line Notify You can get stickersID From HERE --> https://devdocs.line.me/files/sticker_list.pdf <--

    boolean notifyMe(String message,int stickerPackageId,int stickerId)
    // return true when success status 200

About

Line Notify API for JAVA Example

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages