}
}
public boolean updateReview (long reviewId, long subjectId, String content, String title, int rating, String accessToken) throws DoubanException, IOException {
setAccessToken(accessToken);
DoubanReviewEntryObj obj = generateReviewObj(subjectId, content, rating, title, reviewId);
if (obj == null) {
throw ErrorHandler.getCustomDoubanException(100, "Review data is not correct, please double check");
}
try {
int responseCode = this.client.putResponseCodeOnly(RequestUrls.DOUBAN_REVIEW_PREFIX + "/" + reviewId, obj, true);