.post();
if(response.statusCode() == HttpStatus.SC_OK) {
try {
AccessTokenResponse tokenResponse =
JsonSerialization.readValue(response.asString(), AccessTokenResponse.class);
return new Session(getUnifiedPushServerUrl(), tokenResponse);
// FIXME handle the possible io exception!
} catch (IOException e) {
e.printStackTrace();