码迷,mamicode.com
首页 > Windows程序 > 详细

微博API常用方法

时间:2017-03-26 18:11:36      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:ack   count   stat   div   end   login   常用   show   str   

1.获取24小时内前20条用户的微博信息

List<Status> statuses = weibo.getFriendsTimeline();
for (Status status : statuses) 
{
	System.out.println(status.getUser().getName() + ":" +status.getId()+":"+ 
	status.getText() + status.getOriginal_pic()); 
}

2.用户

public static void getLoginUser()
{
	try
	{
		User user =weibo.showUser(USER_ID);
		
		System.out.println(user.getName());
		System.out.println(user.getCity());
		System.out.println(user.getFriendsCount());
		System.out.println(user.getScreenName());
		System.out.println(user.getProfileImageURL().toString());
	}
	catch (WeiboException e)
	{
		// TODO Auto-generated catch block
		e.printStackTrace();
	}
}

3.发表微博

public static void updateStatus() throws Exception
{
    Status status= weibo.updateStatus("新浪微博Android开发视频测试微博!!!!");	
    System.out.println(status.getId() + " : "+ status.getText()+"  "+status.getCreatedAt());
}	

  

  

微博API常用方法

标签:ack   count   stat   div   end   login   常用   show   str   

原文地址:http://www.cnblogs.com/ganchuanpu/p/6623415.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!