Response response = httpPost(url, params.toArray(new PostParameter[params.size()]), true);
throwExceptionIfError(response);
try {
return new Scale(response.asJSONObject().getJSONObject("scale"));
} catch (JSONException e) {
throw new FitbitAPIException("Error parsing json response to Scale : ", e);
}
}