* href="http://open.weibo.com/wiki/2/statuses/repost">statuses/repost</a>
* @since JDK 1.5
*/
public Status Repost(String id, String status, Integer is_comment)
throws WeiboException {
return new Status(Weibo.client.post(WeiboConfig.getValue("baseURL") + "statuses/repost.json", new PostParameter[] {
new PostParameter("id", id),
new PostParameter("status", status),
new PostParameter("is_comment", is_comment.toString()) }));
}