This is a Java Library to interact with the audiencerate.com Dashboard REST API.
AudienceRate Ltd. provides online advertising platform products and services.
The full API is documented in swagger format here: https://apidocs.audiencerate.com/
It's required to have:
- an AWS IAM user Access Keys
- a valid Dashboard User with email and password
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.audiencerate:dashboard-api-sdk:VERSION'
}
Follow instruction for other package managers from: https://jitpack.io/#audiencerate/dashboard-api-sdk
Under com.audiencerate.dashboard.sdk.api.examples there are two example applications:
A simple console application that call a GET Endpoint to fetch Audiences.
An example on how to upload an audience file in the dashboard via API.
This project is released under MIT License. See license file for more detailed information.