Package weibo4j.examples.user

Source Code of weibo4j.examples.user.GetUserInfo

/**
*
*/
package weibo4j.examples.user;

import weibo4j.User;
import weibo4j.Weibo;
import weibo4j.WeiboException;

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

  /**
   * 根据用户ID获取用户资料(授权用户)
   * @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 {
      User user = getWeibo(true,args).showUser(args[2]);
      System.out.println(user.toString());
    } catch (WeiboException 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.user.GetUserInfo

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.