Integer without_mention, Integer comment_ori) throws WeiboException {
return new Comment(
Weibo.client.post(
WeiboConfig.getValue("baseURL") + "comments/reply.json",
new PostParameter[] {
new PostParameter("comment", comment),
new PostParameter("id", id),
new PostParameter("cid", cid),
new PostParameter("without_mention",without_mention.toString()),
new PostParameter("comment_ori", comment_ori.toString()) }));
}