Statuses/show

跳转到: 导航, 搜索

目录

statuses/show

获取单条ID的微博信息,作者信息将同时返回。

URL

http://api.t.sina.com.cn/statuses/show/id.format

格式

xml, json

HTTP请求方式

GET

是否需要登录

true

请求数限制

true

关于请求数限制,参见接口访问权限说明

请求参数

  • id. 必须参数(微博信息ID),要获取已发表的微博ID,如ID不存在返回空

o 示例: http://api.t.sina.com.cn/statuses/show/142277.xml

返回结果

XML

<?xml version="1.0" encoding="UTF-8"?>
<status>
  <created_at>Fri Sep 03 11:41:08 +0800 2010</created_at>
  <id>2265657555</id>
  <text>今日下午回初中看看,然后老同学请吃饭,因为距明天就去报到了,最后的晚餐。希望老天留翻D眼泪等到我军训时先留。。</text>
  <source>
    <a href="http://t.sina.com.cn">新浪微博</a>
  </source>
  <favorited>false</favorited>
  <truncated>false</truncated>
  <geo/>
  <in_reply_to_status_id/>
  <in_reply_to_user_id/>
  <in_reply_to_screen_name/>
  <user>
    <id>1763124584</id>
    <screen_name>标-心</screen_name>
    <name>标-心</name>
    <province>44</province>
    <city>1</city>
    <location>广东 广州</location>
    <description>不帅也不C</description>
    <url>http://blog.163.com/chen_mou/</url>
    <profile_image_url>http://tp1.sinaimg.cn/1763124584/50/1283605697</profile_image_url>
    <domain/>
    <gender>m</gender>
    <followers_count>17</followers_count>
    <friends_count>16</friends_count>
    <statuses_count>71</statuses_count>
    <favourites_count>0</favourites_count>
    <created_at>Thu Jun 17 00:00:00 +0800 2010</created_at>
    <following>false</following>
    <verified>false</verified>
    <allow_all_act_msg>false</allow_all_act_msg>
    <geo_enabled>false</geo_enabled>
  </user>
</status>

JSON

{
   "created_at":"Fri Sep 03 11:41:08 +0800 2010",
   "id":2265657555,
   "text":"今日下午回初中看看,然后老同学请吃饭,因为距明天就去报到了,最后的晚餐。希望老天留翻D眼泪等到我军训时先留。。",
   "source":"<a href=\"http://t.sina.com.cn\" rel=\"nofollow\">新浪微博</a>",
   "favorited":false,
   "truncated":false,
   "in_reply_to_status_id":"",
   "in_reply_to_user_id":"",
   "in_reply_to_screen_name":"",
   "geo":null,
   "user":{
      "id":1763124584,
      "screen_name":"标-心",
      "name":"标-心",
      "province":"44",
      "city":"1",
      "location":"广东 广州",
      "description":"不帅也不C",
      "url":"http://blog.163.com/chen_mou/",
      "profile_image_url":"http://tp1.sinaimg.cn/1763124584/50/1283605697",
      "domain":"",
      "gender":"m",
      "followers_count":17,
      "friends_count":16,
      "statuses_count":71,
      "favourites_count":0,
      "created_at":"Thu Jun 17 00:00:00 +0800 2010",
      "following":false,
      "allow_all_act_msg":false,
      "geo_enabled":false,
      "verified":false
   }
}

字段说明 - status

  • created_at: 创建时间
  • id: 微博ID
  • text: 微博信息内容
  • source: 微博来源
  • favorited: 是否已收藏
  • truncated: 是否被截断
  • in_reply_to_status_id: 回复ID
  • in_reply_to_user_id: 回复人UID
  • in_reply_to_screen_name: 回复人昵称
  • thumbnail_pic: 缩略图
  • bmiddle_pic: 中型图片
  • original_pic:原始图片
  • user: 作者信息
  • retweeted_status: 转发的博文,内容为status,如果不是转发,则没有此字段

字段说明 - user

  • id: 用户UID
  • screen_name: 微博昵称
  • name: 友好显示名称,同微博昵称
  • province: 省份编码(参考省份编码表)
  • city: 城市编码(参考城市编码表)
  • location:地址
  • description: 个人描述
  • url: 用户博客地址
  • profile_image_url: 自定义图像
  • domain: 用户个性化URL
  • gender: 性别,m--男,f--女,n--未知
  • followers_count: 粉丝数
  • friends_count: 关注数
  • statuses_count: 微博数
  • favourites_count: 收藏数
  • created_at: 创建时间
  • following: 是否已关注(此特性暂不支持)
  • verified: 加V标示,是否微博认证用户

使用示例

需修改appkey

  • xml:

curl -u uid:password http://api.t.sina.com.cn/statuses/show/1472669360.xml?source=appkey

  • json:

curl -u uid:password http://api.t.sina.com.cn/statuses/show/1472669360.json?source=appkey

Java示例

请从 微博SDK开发包下载 下载Java SDK
代码示例如下:

package weibo4j.examples.statuses;

import java.util.List;
import weibo4j.Paging;
import weibo4j.Status;
import weibo4j.Weibo;

public class GetStatus {
	/**
	 * 获取单条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 {
       	Weibo weibo = getWeibo(true,args);
       	List<Status> list = weibo.getUserTimeline(args[2], new Paging(1).count(4));
       	if(list.size() > 0) {
       		Status status = weibo.showStatus(list.get(0).getId());
           	System.out.println( status.getId() + "  : "+status.getText());
       	}
		} 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;
	}
}

PHP示例

请从 微博SDK开发包下载 处下载PHP SDK(支持OAuth验证之版本)
代码示例如下:

//Statuses/show
//获取单条ID的微博信息,作者信息将同时返回
$c = new WeiboClient( WB_AKEY , 
                      WB_SKEY , 
                      $_SESSION['last_key']['oauth_token'] , 
                      $_SESSION['last_key']['oauth_token_secret']  );

$u_id = "用户ID";
$msg = $c->user_timeline($u_id);
if ($msg === false || $msg === null){
	echo "Error occured";
	return false;
}
if (isset($msg['error_code']) && isset($msg['error'])){
	echo ('Error_code: '.$msg['error_code'].';  Error: '.$msg['error'] );
	return false;
}
if (count($msg)>0){
	$t_id = $msg[0]['id'];
	$msg = $c->show_status($t_id);
	if ($msg === false || $msg === null){
		echo "Error occured";
		return false;
	}
	if (isset($msg['error_code']) && isset($msg['error'])){
		echo ('Error_code: '.$msg['error_code'].';  Error: '.$msg['error'] );
		return false;
	}
	if (isset($msg['id']) && isset($msg['text'])){
		echo($msg['id'].' : '.$msg['text']);
	}
}