com.cleeng.api.examples.CleengJavaAPIExample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cleeng-java-sdk Show documentation
Show all versions of cleeng-java-sdk Show documentation
When you are building your website or application with Java, you can use the Cleeng Java SDK. It simplifies the use of the Cleeng API as it handles user login and content access, and deals with all JSON-RPC specific code.
package com.cleeng.api.examples;
import java.lang.System;
import java.util.Arrays;
import com.cleeng.api.*;
import com.cleeng.api.domain.OfferResponse;
import com.cleeng.api.domain.SubscriptionOfferData;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
class CleengJavaAPIExample {
private static final Logger logger = LogManager.getLogger(CleengJavaAPIExample.class);
public static void main(String args[]) throws Exception {
String publisherToken = "IEiuf3fJzAorVvxgBYiHiHXGk8oFPckTMSOn8hS1--lOti30";
Cleeng api = CleengFactory.createSandboxApi(publisherToken);
final SubscriptionOfferData offerData = new SubscriptionOfferData(12.34,
"week",
"title",
"http://www.someurl.com",
"description",
null,
0,
9,
Arrays.asList("Sport"),
true,
"whitelist",
Arrays.asList("PL", "DE")
);
final OfferResponse response = api.createSubscriptionOffer(offerData);
logger.info("Done. Created offer id: " + response.result.id);
}
}