Create a Veem Client

VeemClient client = context.getClient(token.getAccessToken());

The VeemClient is the entry point to all of the Veem API. Each VeemClient instance is tied to an access token. That token is automatically injected into each request so you don't have to carry the tokens around in your code.

Ready for action!