* href="http://open.weibo.com/wiki/2/comments/create">comments/create</a>
* @since JDK 1.5
*/
public Comment createComment(String comment, String id, Integer comment_ori)
throws WeiboException {
return new Comment(Weibo.client.post(WeiboConfig.getValue("baseURL")
+ "comments/create.json", new PostParameter[] {
new PostParameter("comment", comment),
new PostParameter("id", id),
new PostParameter("comment_ori", comment_ori.toString()) }));
}