sendinblue

Sendinblue API Wrapper for Java

Лицензия

Лицензия

Группа

Группа

com.sendinblue
Идентификатор

Идентификатор

sendinblue
Последняя версия

Последняя версия

2.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

sendinblue
Sendinblue API Wrapper for Java
Ссылка на сайт

Ссылка на сайт

https://github.com/mailin-api/sendinblue-java-mvn
Система контроля версий

Система контроля версий

https://github.com/mailin-api/sendinblue-java-mvn/

Скачать sendinblue

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.sendinblue/sendinblue/ -->
<dependency>
    <groupId>com.sendinblue</groupId>
    <artifactId>sendinblue</artifactId>
    <version>2.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.sendinblue/sendinblue/
implementation 'com.sendinblue:sendinblue:2.0'
// https://jarcasting.com/artifacts/com.sendinblue/sendinblue/
implementation ("com.sendinblue:sendinblue:2.0")
'com.sendinblue:sendinblue:jar:2.0'
<dependency org="com.sendinblue" name="sendinblue" rev="2.0">
  <artifact name="sendinblue" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.sendinblue', module='sendinblue', version='2.0')
)
libraryDependencies += "com.sendinblue" % "sendinblue" % "2.0"
[com.sendinblue/sendinblue "2.0"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
com.google.code.gson : gson jar 2.7

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 3.8.1

Модули Проекта

Данный проект не имеет модулей.

SendinBlue Mvn Central Repository

Note: The latest API V3.0 ( LTS ) is now maintained at https://github.com/sendinblue/ and the Documentation is available here https://developers.sendinblue.com

This is SendinBlue provided API V2 Mvn central repository. It implements the various exposed APIs that you can read more about on https://apidocs.sendinblue.com.

SendinBlue API's use HTTP Authentication through an api key. You can create your api key from API Console, after you sign up for an account with SendinBlue. You must use latest version 2.0, access key, for accessing APIs.

Install Package

The following recommended installation steps. If you are unfamiliar with maven central repository, see the About Maven Central Repository.

Our maven package is available here

Add the following to your pom.xml file:

{
  ...
  <dependencies>
      <dependency>
         <groupId>com.sendinblue</groupId>
         <artifactId>sendinblue</artifactId>
         <version>2.0</version>
      </dependency>
   <dependencies>
   ...
}

Alternative installation

To download the jar pacakage click here

Usage

Assuming that you have download jar file from above mention URL. You will get a jar file named sendinblue-2.0.

  • Create a file MyClass.java using below code :-
import com.sendinblue.Sendinblue;
import java.util.*;

class MyClass
{
    public static void main(String[] args)
    {
    	Sendinblue http = new Sendinblue("https://api.sendinblue.com/v2.0","your_api_key");
	    String accountDetail = http.get_account();
	    System.out.println(accountDetail);
	    System.out.println(" ");

	    String smtpDetail = http.get_smtp_details();
	    System.out.println(smtpDetail);
	    System.out.println(" ");
    }
}
  • Compile and execute above java file with Sendinblue API package
javac -cp '.:sendinblue-2.0.jar' MyClass.java
java -cp '.:sendinblue-2.0.jar' MyClass

Support and Feedback

Be sure to visit the SendinBlue official documentation website for additional information about our API.

If you find a bug, please submit the issue in Github directly.

As always, if you need additional assistance, drop us a note here.

com.sendinblue

SendinBlue

Версии библиотеки

Версия
2.0