try {
Response response = httpPost(url, params.toArray(new PostParameter[params.size()]), true);
throwExceptionIfError(response);
return new UserInfo(response.asJSONObject());
} catch (FitbitAPIException e) {
throw new FitbitAPIException("Error updating profile: " + e, e);
} catch (JSONException e) {
throw new FitbitAPIException("Error updating profile: " + e, e);
}
}