Skip to content

The TeleSign Java SDK lets you easily integrate with our REST API.

License

Notifications You must be signed in to change notification settings

zhangheng1980/java_telesign_enterprise

 
 

Repository files navigation

https://raw.github.com/TeleSign/java_telesign/master/java_banner_enterprise.jpg

TeleSign Enterprise Java SDK

TeleSign is a communications platform as a service (CPaaS) company, founded on security. Since 2005, TeleSign has been a trusted partner to the world’s leading websites and mobile applications, helping secure billions of end-user accounts. Today, TeleSign’s data-driven, cloud communications platform is changing the way businesses engage with customers and prevent fraud.

For more information about TeleSign, visit our website.

Documentation

Code documentation is included in the SDK. Complete documentation, quick start guides and reference material for the TeleSign API is available within the TeleSign Enterprise Documentation.

Installation

To add the TeleSign Java SDK to your Gradle project:

compile files('path/to/jar/telesignenterprise-(insert latest version).jar')

To add the TeleSign Java SDK to your Maven project:

<dependency>
    <groupId>com.telesign</groupId>
    <artifactId>telesign</artifactId>
    <version>(insert latest version)</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/path/to/jar/telesignenterprise-(insert latest version).jar</systemPath>
</dependency>

JDK 7+ is required for the TeleSign Enterprise Java SDK.

Authentication

You will need a Customer ID and API Key in order to use TeleSign’s REST API. If you are already a customer and need an API Key, you can retrieve it from TelePortal.

Dependencies

We make use of popular, feature-rich and well-tested open-source libraries to perform the underlying functionality of the SDK. These dependencies are managed by the community accepted package manager. If you are unable to add these additional third party dependencies to your project we have ensured that the SDK code is easy to read and can serve as sample code. We have also made sure that more complicated functions such as generateTelesignHeaders can be easily extracted from the SDK and used 'as is' in your project.

Java Code Example: Verify SMS

Here is a basic code example with JSON response.

String customerId = "FFFFFFFF-EEEE-DDDD-1234-AB1234567890";
String apiKey = "EXAMPLE----TE8sTgg45yusumoN6BYsBVkh+yRJ5czgsnCehZaOYldPJdmFh6NeX8kunZ2zU1YWaUw/0wV6xfw==";

String phoneNumber = "phone_number";

VerifyClient verifyClient = new VerifyClient(customerId, apiKey);
RestClient.TelesignResponse telesignResponse = verifyClient.sms(phoneNumber, null);
{'errors': [],
 'reference_id': '25685A40218006049044A58789044948',
 'resource_uri': '/v1/verify/25685A40218006049044A58789044948',
 'status': {'code': 290,
    'description': 'Message in progress',
    'updated_on': '2017-02-07T03:13:42.610863Z'},
 'sub_resource': 'sms',
 'verify': {'code_entered': '',
    'code_state': 'UNKNOWN'}}

For more examples, see the examples folder or visit TeleSign Enterprise Documentation.

About

The TeleSign Java SDK lets you easily integrate with our REST API.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%