ChannelApe / bigcommerce-sdk

Java SDK for BigCommerce V3 REST APIs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BigCommerce SDK

Java SDK for BigCommerce REST APIs

Service Develop Master
CI Status Build Status Build Status

Quality Gate Coverage

Maven

	<dependency>
	    <groupId>com.channelape</groupId>
	    <artifactId>bigcommerce-sdk</artifactId>
	    <version>2.0.0</version>
	</dependency>

Quickstart

Creating SDK with store hash, client ID, and access token then making a sample call:

	final BigcommerceSdk bigcommerceSdk = BigcommerceSdk.newBuilder().withStoreHash(storeHash)
			.withClientId(clientId).withAccessToken(accessToken).build();
	final CatalogSummary catalogSummary = bigcommerceSdk.getCatalogSummary();

Building from source

1. Install Maven
2. Install JDK 8
3. Clone the repository.
3. Navigate to repository directory and run `mvn install`

Release Notes

Please see our release notes here: https://github.com/ChannelApe/bigcommerce-sdk/releases

About

Java SDK for BigCommerce V3 REST APIs

License:Apache License 2.0


Languages

Language:Java 99.1%Language:Shell 0.9%