String access_token = args[0];
Trend tm = new Trend();
tm.client.setToken(access_token);
int trendId = Integer.parseInt(args[1]);
try {
JSONObject result = tm.trendsDestroy(trendId);
Log.logInfo(String.valueOf(result));
} catch (WeiboException e) {
e.printStackTrace();
}
}