Statuses/show

跳转到: 导航, 搜索
(使用示例: 添加代码)
(Java示例)
第163行: 第163行:
 
  }
 
  }
 
  }
 
  }
 +
====PHP示例====
 +
<pre>
 +
//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']);
 +
}
 +
}
 +
</pre>

2010年8月4日 (三) 13:36的版本

目录

statuses/show

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

URL

curl 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>Tue Dec 01 08:51:58 +0800 2009</created_at>
   <id>142277(微博ID)</id>
   <text>转发:@1141457724 </text>
   <source>
     <a href="http://t.sina.com.cn">Web</a>
   </source>
   <favorited>false</favorited>
   <truncated>false</truncated>
   <in_reply_to_status_id></in_reply_to_status_id>
   <in_reply_to_user_id></in_reply_to_user_id>
   <in_reply_to_screen_name></in_reply_to_screen_name>
   <user>
     <id>1141457724</id>
     <screen_name>1141457724</screen_name>
     <name>1141457724</name>
     <location>广州</location>
     <description>blog: timyang.net</description>
     <url>http://timyang.net</url>
     <profile_image_url>50#.jpg</profile_image_url>
     <followers_count>0</followers_count>
     <friends_count>0</friends_count>
     <statuses_count>0</statuses_count>
     <favourites_count>0</favourites_count>
     <following>false</following>
   </user>
   <retweeted_status>
     <created_at>Tue Dec 01 08:51:58 +0800 2009</created_at>
     <id>100000000</id>
     <text>虽然渴者只要少许的水便够了,我却很快活地给与了我全部的水。</text>
     <source>
       <a href="http://t.sina.com.cn">Web</a>
     </source>
     <favorited>false</favorited>
     <truncated>false</truncated>
     <in_reply_to_status_id></in_reply_to_status_id>
     <in_reply_to_user_id></in_reply_to_user_id>
     <in_reply_to_screen_name></in_reply_to_screen_name>
     <thumbnail_pic>http://static16.photo.sina.com.cn/thumbnail/62988d06tcbbc377f7bbf</thumbnail_pic>
     <bmiddle_pic>http://static16.photo.sina.com.cn/bmiddle/62988d06tcbbc377f7bbf</bmiddle_pic>
     <original_pic>http://static16.photo.sina.com.cn/orignal/62988d06tcbbc377f7bbf</original_pic>
     <user>
       <id>1337040644</id>
       <screen_name>1337040644</screen_name>
       <name>1337040644</name>
       <location>广州</location>
       <description>blog: timyang.net</description>
       <url>http://timyang.net</url>
       <profile_image_url>50#.jpg</profile_image_url>
       <followers_count>0</followers_count>
       <friends_count>0</friends_count>
       <statuses_count>0</statuses_count>
       <favourites_count>0</favourites_count>
       <following>false</following>
     </user>
   </retweeted_status>
 </status>

JSON示例:

   {"created_at":"Wed Jan 06 19:02:40 +0800 2010",
   "id":142277,
   "text":"111111111111111111111",
   "source":"<a id=\"0\" href=\"http://t.sina.com.cn/\" rel=\"nofollow\">Web</a>",
   "favorited":false,
   "truncated":false,
   "in_reply_to_status_id":"",
   "in_reply_to_user_id":"",
   "in_reply_to_screen_name":"",
   "geo":null,
   "user":
{"id":11057, "screen_name":"name_11057", "name":"name_11057", "province":"0", "city":"0", "location":"", "description":"", "url":"", "profile_image_url":"http://tp2.sinaimg.cn/11057/50/0", "domain":"11057", "followers_count":19, "friends_count":101, "statuses_count":0, "favourites_count":0, "created_at":"Thu Jan 01 08:00:00 +0800 1970", "following":false, "geo_enabled":false, "verified":false} }

使用示例

需修改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示例

//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']);
	}
}