public JSONObject updateFavoritesTagsBatch(String tid, String tag)
throws WeiboException {
return Weibo.client.post(
WeiboConfig.getValue("baseURL")
+ "favorites/tags/update_batch.json",
new PostParameter[] { new PostParameter("tid", tid),
new PostParameter("tag", tag) }).asJSONObject();
}