Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

massimozappino/tagmycode-java-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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();