8000 GitHub - e-amzallag/bricklinkapi: Java API for Bricklink API
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

e-amzallag/bricklinkapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java Bricklink API

Maven Central

Java API for Bricklink API.

See http://apidev.bricklink.com/redmine/projects/bricklink-api/wiki for more information about the official Bricklink API

Implemented methods

Methods category Implemented
Order No
User Inventory No
Catalog Item Yes
Feedback No
Color Yes
Category Yes
Push Notification No
Coupon No
Setting No
Member No
Item Mapping Yes

Examples

IBricklinkService service = new BricklinkServiceImpl("consumerKey", "consumerSecret", "tokenValue", "tokenSecret");
Item item = service.getCatalogItem().getItem(Type.PART, "3001");

PriceGuideParametersRequest param = new PriceGuideParametersRequest();
param.setColorId(9);
param.setNewOrUsed(NewOrUsed.NEW);
param.setGuideType(GuideType.STOCK);
PriceGuide price = service.getCatalogItem().getPrice(Type.PART, "3003", param);

Check ICatalogItemService, ICategoryService, IColorService, IItemMappingService to see the full list of methods.

Unit tests

To run the tests, you need to create a parameters.properties in test resources with the following properties :

consumerKey=
consumerSecret=
tokenValue=
tokenSecret=

About

Java API for Bricklink API

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0