.setDescription(CommonExt.APP_DESCRIPTION)
.setIcon(CommonExt.APP_ICON)
.setRedirectURL(CommonExt.APP_REDIRECT_URI)
.buildJSONMessage();
OAuthRegistrationClient oauthclient = new OAuthRegistrationClient(new URLConnectionClient());
OAuthClientRegistrationResponse response = oauthclient.clientInfo(request);
assertEquals(CommonExt.CLIENT_ID, response.getClientId());
assertEquals(CommonExt.CLIENT_SECRET, response.getClientSecret());
assertEquals(CommonExt.EXPIRES_IN, response.getExpiresIn());