/tagmycode-java-sdk

A Java library to access TagMyCode RESTful API.

Primary LanguageJavaApache License 2.0Apache-2.0

Build Status Coverage Status

TagMyCode Java SDK

A Java library to access TagMyCode RESTful API.

Examples

Authenticating

Client client = new Client("consumer_id", "consumer_secret");
client.setOauthToken(new OauthToken("access_token", "refresh_token"));

Get account information for logged user

TagMyCode tagmycode = new TagMyCode(client)
User user = tagmycode.getAccount();