Skip to content

tkosachev/infobip-api-java-client

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Infobip API Java client

Prerequisites

You have installed Java (minimal required version is Java 7).

Installation

It is recommended that you use a dependency management system to get started with using Infobip Java API client in your project. You can choose between Maven and Gradle. Depending on your choice find the appropriate configuration below.

Maven configuration

For using the API client in your maven project add the following snippet to the <dependencies> section of your pom.xml file:

<dependency>
    <groupId>com.infobip</groupId>
    <artifactId>infobip-api-java-client</artifactId>
    <version>2.1.0</version>
</dependency>

Gradle configuration

For adding the API client to your gradle project add the following line to the dependencies section of your build.gradle file:

compile "com.infobip:infobip-api-java-client:2.1.0"

Manual dependency management

If you choose not to use any tool for dependency management you can still use the Infobip API client. A .jar with the API client and all of its dependencies can be found at maven central repository.
From the list there click on jar-with-dependencies.jar link to download the .jar file that you can manually integrate into your project.

Running examples

First, setup your username and password in infobip.examples.Example. Then, you can run provided examples in infobip.examples package

Basic messaging example

First, initialize the messaging client using your username and password:

SendSingleTextualSms client = new SendSingleTextualSms(new BasicAuthConfiguration(USERNAME, PASSWORD));

Prepare the message:

SMSTextualRequest requestBody = new SMSTextualRequest();
requestBody.setFrom(FROM);
requestBody.setTo(Arrays.asList("xxxxxxxx", "yyyyyyyy"));
requestBody.setText("This is an example message");

Send the message:

SMSResponse response = client.execute(requestBody);

Later you can query for the delivery status of the message:

 GetSentSmsDeliveryReports client = new GetSentSmsDeliveryReports(new BasicAuthConfiguration(USERNAME, PASSWORD));
 SMSReportResponse response = client.execute(BULK_ID, MESSAGE_ID, LIMIT);

Messaging with delivery report push to notification URL example

Similar to standard messaging example, but when preparing your message, use SMSAdvancedTextualRequest:

SendMultipleTextualSmsAdvanced client = new SendMultipleTextualSmsAdvanced(new BasicAuthConfiguration(USERNAME, PASSWORD));

Destination destination = new Destination();
destination.setTo("xxxxxxxx");

Message message = new Message();
message.setFrom(FROM);
message.setDestinations(Collections.singletonList(destination));
message.setText(MESSAGE_TEXT);
message.setNotifyUrl("NOTIFY_URL");

SMSAdvancedTextualRequest requestBody = new SMSAdvancedTextualRequest();
requestBody.setMessages(Collections.singletonList(message));

SMSResponse response = client.execute(requestBody);

When the delivery notification is pushed to your server as a HTTP POST request, you can process the body of the message with the following code:

SMSReportResponse smsReportResponse = gson.fromJson(requestBody, SMSReportResponse.class);

License

This library is licensed under the Apache License, Version 2.0

About

Infobip API client library in Java.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%