The primary goal of this project is to make it easier to build applications that use sms api technologies.
- Implementation for accessing the orange ci sms api.
Download the jar though Maven:
<dependency>
<groupId>com.centonni</groupId>
<artifactId>kpakpato-api</artifactId>
<version>1.0.4-RELEASE</version>
</dependency>
public class TestKpakpato {
public static void main(String[] args) throws Exception {
//create an instance of the orange api with your credentials, your authentication token is transparently retrieved here
SmsAPI ssapi=new OrangeSmsAPI("your_client_id", "your_client_secret");
//Create a message context that will be used to send your sms
MessageContext context=new MessageContext("225senderAddress", "senderName", "your message here");
//send a sms to your receiver
ssapi.sendSms(context, "225receiverAdress");
}
}
Here are some ways for you to get involved :
- Create github tickets for bugs and new features and comment and vote on the ones that you are interested in.
- Github is for social coding: if you want to write code, we encourage contributions through pull requests from forks of this repository. If you want to contribute code this way, please reference a github ticket as well covering the specific issue you are addressing.
- Watch for upcoming articles on kpakpato-api by subscribing to my blog.