Package weibo4j.examples.statuses

Source Code of weibo4j.examples.statuses.DeleteStatus

/**
*
*/
package weibo4j.examples.statuses;

import java.util.List;

import weibo4j.Status;
import weibo4j.Weibo;

/**
* @author hezhou
*
*/
public class DeleteStatus {

  /**
   * 删除一条微博信息
   * @param args
   */
  public static void main(String[] args) {
    System.setProperty("weibo4j.oauth.consumerKey", Weibo.CONSUMER_KEY);
      System.setProperty("weibo4j.oauth.consumerSecret", Weibo.CONSUMER_SECRET);
        try {
          Weibo weibo = getWeibo(true,args);
          //先发表一篇微博
          Status status = weibo.updateStatus("测试测试");
          System.out.println(status.getId() + " : "+ status.getText()+"  "+status.getCreatedAt());
          //删除刚发表的微博
          status = weibo.destroyStatus(status.getId());
          List<Status> list = weibo.getUserTimeline(args[2]);//args[2]:用户id
          for(Status st : list) {//遍历当前微博信息
            System.out.println(st.getId() + " : "+ st.getText()+"  "+st.getCreatedAt());
          }
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

  private static Weibo getWeibo(boolean isOauth,String ... args) {
    Weibo weibo = new Weibo();
    if(isOauth) {//oauth验证方式 args[0]:访问的token;args[1]:访问的密匙
      weibo.setToken(args[0], args[1]);
    }else {//用户登录方式
        weibo.setUserId(args[0]);//用户名/ID
        weibo.setPassword(args[1]);//密码
    }
    return weibo;
  }

}
TOP

Related Classes of weibo4j.examples.statuses.DeleteStatus

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.