Examples of destroyTagsBatch()


Examples of weibo4j.Tags.destroyTagsBatch()

    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();
View Full Code Here

Examples of weibo4j.Tags.destroyTagsBatch()

    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();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.