To use the Tradenity SDK, you must have:
- Working Java development environment (currently JDK 1.7 is the only tested version, but Java 6 and 8 should work).
- Active account in Tradenity
The SDK is available through maven central, You can install it using any compatible tool.
<dependency>
<groupId>com.tradenity</groupId>
<artifactId>java-sdk</artifactId>
<version>1.0.2</version>
</dependency>
Add this line to the dependency section
compile com.tradenity:java-sdk:1.0.2
<dependency org="com.tradenity" name="java-sdk" rev="1.0.2"/>
First of all, you have to get API keys for your store, you can find it in your store Edit
page.
To get there navigate to the stores list page, click on the Edit
button next to your store name, scroll down till you find the API Keys
section.
With the API key in hand, you can initialize the Tradenity client.
Tradenity client needs the API key and an instance of SessionTokenStore
which is an object that makes Tradenity session integrates with the web framework's session mechanism.
The Java SDK provide the interface and a default implementation suitable for single user application (such as android app),
and it's easy to implement your own for other frameworks, It is a simple 3 method interface.
If you are using Spring framework or Grails, the Spring SDK extension provide implementation suitable for Spring and Grails.
TradenityClient client = new TradenityClient('sk_1234567')
Make sure to replace the api keys with the ones for your store, otherwise you will get authentication error
The Tradenity SDK is organized into a group of model entitiy classes that corresponds to the REST API's resources, each encapsulate the operation for a specific entity model,
for example to perform operations related to the Brand
resource you can use the corresponding tradenity.sdk.entities.Brand
class.
Now, just call any method in your code.
BrandService brandService = new BrandService(client);
Brand brand = brandService.findById("1243-9786786-jhgjtu-789s6i");
We provide 2 sample applications, actually it is the same application implemented using 2 frameworks: Spring MVC
, and Grails
.
Live demo of Camerastore, check it out to have an idea of what Tradenity API can do.
You can find the code at Github:
Camera store for spring mvc code.
We also provide a detailed explanation of the code of these sample applications in the form of a step by step tutorials: