try {
Response res = httpPost(url, params.toArray(new PostParameter[params.size()]), true);
return new WeightLog(res.asJSONObject().getJSONObject("weightLog"));
} catch (FitbitAPIException e) {
throw new FitbitAPIException("Error logging weight: " + e, e);
} catch (JSONException e) {
throw new FitbitAPIException("Error logging weight: " + e, e);
}
}