Statuses/friends timeline

跳转到: 导航, 搜索

目录

statuses/friends_timeline

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

URL

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

格式

xml, json

HTTP请求方式

GET

是否需要登录

true

请求数限制

1 call per request

参数

  • since_id: 可选参数. 只返回ID比since_id大(比since_id时间晚的)的微博信息。
o 示例: http://api.t.sina.com.cn/statuses/friends_timeline.xml?since_id=12345
  • max_id: 可选参数. 返回ID不大于max_id(时间不晚于max_id)的微博信息。
o 示例: http://api.t.sina.com.cn/statuses/friends_timeline.xml?max_id=54321
  • count: 可选参数. 每次返回的最大记录数(即页面大小),不大于200。
o 示例: http://api.t.sina.com.cn/statuses/friends_timeline.xml?count=5
  • page: 可选参数. 返回结果的页序号。注意:有分页限制。根据用户关注对象发表的数量,通常最多返回1,000条最新微博。
o 示例: http://api.t.sina.com.cn/statuses/friends_timeline.xml?page=3

返回

XML示例:

<?xml version="1.0" encoding="UTF-8"?>
<statuses>
<status>
   <created_at>Fri Dec 25 13:07:17 +0800 2009</created_at>
   <id>14265</id>
   <text>在群星之中,有一颗星是指导着我的生命通过不可知的黑暗的。 </text>
   <source>
     <a id="0" href="http://t.sina.com.cn">Web</a>
   </source>
   <favorited>false</favorited>
   <truncated>false</truncated>
   <geo/>
   <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>6719</id>
     <screen_name>name_6719</screen_name>
     <name>name_6719</name>
     <province></province>
     <city></city>
     <location></location>
     <description></description>
     <profile_image_url>http://tp4.sinaimg.cn/6719/50/0</profile_image_url>
     <domain>6719</domain>
     <gender></gender>
     <email></email>
     <qq>319</qq>
     <msn>msn_319</msn>
     <followers_count>18</followers_count>
     <friends_count>30</friends_count>
     <statuses_count>0</statuses_count>
     <favourites_count>0</favourites_count>
     <created_at>Thu Jan 01 08:00:00 +0800 1970</created_at>
     <following>false</following>
     <verified>false</verified>
     <geo_enabled>false</geo_enabled>
   </user>
 </status>
 ...
 </statuses>

使用示例

cURL:

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