An open API service indexing awesome lists of open source software.

https://github.com/nicho92/mkm-api-java

Java SDK for Magickartmarket API https://www.magiccardmarket.eu/
https://github.com/nicho92/mkm-api-java

api java-api magiccardmarket mkm mkm-api-java mtg mtg-cards webservices

Last synced: 2 months ago
JSON representation

Java SDK for Magickartmarket API https://www.magiccardmarket.eu/

Awesome Lists containing this project

README

          

# mkm-api-java
Java api for MagicCardMarket v2.0

Import via maven :


com.github.nicho92
mkm-api-java
0.11.2

Import via Gradle :

implementation 'com.github.nicho92:mkm-api-java:0.11.2'


Usage :

```java
MkmAPIConfig.getInstance().init(ACCESS_TOKEN_SECRET,ACCESS_TOKEN,APP_SECRET,APP_TOKEN);
CartServices cartService = new CartServices(); //manage your basket
ArticleService artServices = new ArticleService(); //search articles
WantsService wanServices = new WantsService(); //manage your wantlist
ProductServices prodServices = new ProductServices();//find products
StockService stockServices = new StockService();//manage your stock
MKMService mkmServices = new MKMService();//get mkm games, get expansions
```