Statuses/friends timeline

跳转到: 导航, 搜索
第110行: 第110行:
 
     </rt>
 
     </rt>
 
   </status>
 
   </status>
 
 
   ...
 
   ...
 
   </statuses>
 
   </statuses>

2009年11月30日 (一) 18:00的版本

目录

statuses/friends_timeline

返回用户所有关注用户最新n条微博信息。和用户首页返回内容相同。

URL

http://api.t.sina.com.cn/statuses/friends_timeline.format

格式

xml, json, rss, atom

HTTP请求方式

GET

是否需要登录

true

请求数限制

1 call per request

参数

  • since_id: 可选参数. 返回ID比数值since_id大(比since_id时间晚的)的微博信息。

o Example: http://api.t.sina.com.cn/statuses/friends_timeline.xml?since_id=12345

  • max_id: 可选参数. 返回ID不大于max_id(时间不晚于max_id)的微博信息。

o Example: http://api.t.sina.com.cn/statuses/friends_timeline.xml?max_id=54321

  • count: 可选参数. 每次返回的最大记录数(即页面大小),不大于200。

o Example: http://api.t.sina.com.cn/statuses/friends_timeline.xml?count=5

  • page: 可选参数. 返回结果的页序号。注意:有分页限制。

o Example: http://api.t.sina.com.cn/statuses/friends_timeline.rss?page=3

返回

XML示例:

<?xml version="1.0" encoding="UTF-8"?>
<statuses>
<status>
   <created_at>Mon Nov 30 17:54:03 +0800 2009</created_at>
   <id>99999999</id>
   <text>布莱恩特一个365度的大转身”(那个5度怎么看出来的?)</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>10503</id>
     <screen_name>10503</screen_name>
     <name>10503</name>
     <location>广州</location>
     <description>blog: timyang.net</description>
     <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>
     <url></url>
     <protected>false</protected>
     <profile_background_color>9ae4e8</profile_background_color>
     <profile_text_color>000000</profile_text_color>
     <profile_link_color>0000ff</profile_link_color>
     <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
     <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
     <created_at>Sun Mar 18 06:42:26 +0000 2007</created_at>
     <utc_offset>+8000</utc_offset>
     <time_zone>CST</time_zone>
     <profile_background_tile>false</profile_background_tile>
     <notifications>false</notifications>
     <following>false</following>
   </user>
   
     <created_at>Mon Nov 30 17:54:03 +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>
     <user>
       <id>11075</id>
       <screen_name>11075</screen_name>
       <name>11075</name>
       <location>广州</location>
       <description>blog: timyang.net</description>
       <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>
       <url></url>
       <protected>false</protected>
       <profile_background_color>9ae4e8</profile_background_color>
       <profile_text_color>000000</profile_text_color>
       <profile_link_color>0000ff</profile_link_color>
       <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
       <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
       <created_at>Sun Mar 18 06:42:26 +0000 2007</created_at>
       <utc_offset>+8000</utc_offset>
       <time_zone>CST</time_zone>
       <profile_background_tile>false</profile_background_tile>
       <notifications>false</notifications>
       <following>false</following>
     </user>
   
 </status>
 ...
 </statuses>

使用示例

cURL:

curl -u user:password http://api.t.sina.com.cn/statuses/friends_timeline.xml