* href="http://open.weibo.com/wiki/2/comments/reply">comments/reply</a>
* @since JDK 1.5
*/
public Comment replyComment(String cid, String id, String comment, Integer without_mention,
Integer comment_ori) throws WeiboException {
return new Comment(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())}));
}