.setRedirectURI(Common.REDIRECT_URL)
.setClientId(Common.CLIENT_ID)
.setClientSecret(Common.CLIENT_SECRET)
.buildQueryMessage();
OAuthClient oAuthClient = new OAuthClient(new URLConnectionClient());
OAuthAccessTokenResponse response = oAuthClient.accessToken(request, OAuth.HttpMethod.GET);
assertNotNull(response.getAccessToken());
assertNotNull(response.getExpiresIn());