applicationsUrl = new URL(_baseApiUrl, "oauth/applications");
} catch (MalformedURLException ex) {
throw new AssertionError(ex);
}
Request request = new Request();
request.setApplication(applicationParams);
return post(applicationsUrl, request, ApplicationResponse.class).getApplication();
}