1617181920212223242526
weibo.setToken(access_token); Tags tm = new Tags(); String ids = args[1]; List<Tag> tags = null; try { tags = tm.destroyTagsBatch(ids); for(Tag t : tags){ Log.logInfo(t.toString()); } } catch (WeiboException e) { e.printStackTrace();
1415161718192021222324
Tags tm = new Tags(); tm.client.setToken(access_token); String ids = args[1]; List<Tag> tags = null; try { tags = tm.destroyTagsBatch(ids); for (Tag t : tags) { Log.logInfo(t.toString()); } } catch (WeiboException e) { e.printStackTrace();