ajcRodrigues / movile-java-rest

Java library for Movile Messaging API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

movile-java-rest

Biblioteca Java para API Movile Messaging

Envio de SMS
MovileConfiguration movileConf = new MovileConfiguration("USER_NAME", "AUTH_TOKEN");

try {
	String response = new MovileService(movileConf).send(new Message("cellphone", "Message\nof SMS"));
	
	// Retorna ID do SMS (Returns the ID of SMS)
	System.out.println(response);
}
catch (IException e) {
	// TODO Auto-generated catch block
	e.printStackTrace();
}

Author

Antônio José da Cunha Rodrigues.

About

Java library for Movile Messaging API


Languages

Language:Java 100.0%