Set up a Veem Context

VeemContext context = VeemContext.builder()
    .environment(SANDBOX)
    .clientId("<client_id>")
    .clientSecret("<client_secret>")
    .build();

We start by setting up the Veem context (get credentials from the Veem Developer Sandbox). The Veem context holds the SDK configuration data and shared objects.

The context’s main purpose is to generate instances of VeemClient. But first, we need a token.