* @see <a href="http://open.weibo.com/wiki/2/tags/destroy">tags/destroy</a>
* @since JDK 1.5
*/
public JSONObject destoryTag(Integer tag_id) throws WeiboException {
return Weibo.client.post(WeiboConfig.getValue("baseURL") + "tags/destroy.json",
new PostParameter[] { new PostParameter("tag_id",
tag_id.toString()) }).asJSONObject();
}