A non-official Java library for Coinbase v2 API https://developers.coinbase.com/api/v2
API Key is used when you provide services for your own
CoinbaseAuthenticationBearer auth = new CoinbaseAuthenticationApiKey("{MY_COINBASE_API_KEY}");
OAuth is used when you provide services for a third party
CoinbaseAuthenticationBearer auth = new CoinbaseAuthenticationOAuth("{ACCESS_TOKEN_RETRIEVED_BY_AUTH}");
CoinbaseUserService userService = new CoinbaseUserService();
CoinbaseUser user = userService.showCurrent(auth);
CoinbaseAuthInfo informations = userService.showAuthorizationInformation(auth);
- The remote call by OAuth is not tested yet
- All the features from API are not yet implemented (please ask if you want one missing quickly)
For non-commercial use only ! Please contact me if you want to use it for commercial use.
This API was written by Yoan Africa.