Skip to content

statuses.home timeline.rest

lisztli edited this page Apr 26, 2012 · 2 revisions

#GET /statuses/home_timeline/

显示登录用户时间线

##路径

http://rest.fanfou.com/statuses/home_timeline/

##调用方法

GET

##参数:

    |作用       |格式       |字段说明

--------|-----------|-----------|------------ count|返回消息的条数|count=msg_count |可选, 取值范围1至60 page|返回结果的页码|page=page_id |可选 since_id|只返消息id大于此id的消息|since_id=msgid |可选 max_id|只返消息id小于等于此id的消息|max_id=msgid |可选

##返回值:

显示登录用户时间线

  • 使用方法
curl -X GET "rest.fanfou.com/statuses/home_timeline/?oauth_token=oauth_token&count=2&max_id=20120032&since_id=20120029" | python -mjson.tool
  • 返回值
[
    {
        "created_at": "Wed Apr 25 03:12:02 +0000 2012", 
        "favorited": "false", 
        "id": 20120031, 
        "text": "eeeee", 
        "user": {
            "created_at": "Sat May 12 15:58:58 +0000 2007", 
            "description": "my_desc", 
            "favourites_count": 72, 
            "followed": false, 
            "followers_count": 622, 
            "following": false, 
            "friends_count": 154, 
            "id": 113412, 
            "location": "Peking", 
            "profile_image_url": "http://avatar.lcff.com/s0/00/3e/r4.jpg?1334140470", 
            "profile_image_url_large": "http://avatar.lcff.com/l0/00/3e/r4.jpg?1334140470", 
            "protected": false, 
            "screen_name": "\u7a46\u8363\u5747\u5747\u5747", 
            "statuses_count": 6643, 
            "url": "moon", 
            "website": "http://nimei.org"
        }, 
        "wid": "y9pDw9dM7Ow"
    }, 
    {
        "created_at": "Wed Apr 25 02:57:13 +0000 2012", 
        "favorited": "false", 
        "id": 20120030, 
        "text": "@marcher\u55ef\u54fc ttt", 
        "user": {
            "created_at": "Sat May 12 15:58:58 +0000 2007", 
            "description": "my_desc", 
            "favourites_count": 72, 
            "followed": false, 
            "followers_count": 622, 
            "following": false, 
            "friends_count": 154, 
            "id": 113412, 
            "location": "Peking", 
            "profile_image_url": "http://avatar.lcff.com/s0/00/3e/r4.jpg?1334140470", 
            "profile_image_url_large": "http://avatar.lcff.com/l0/00/3e/r4.jpg?1334140470", 
            "protected": false, 
            "screen_name": "\u7a46\u8363\u5747\u5747\u5747", 
            "statuses_count": 6643, 
            "url": "moon", 
            "website": "http://nimei.org"
        }, 
        "wid": "ysjoiA30lBM"
    }
]
Clone this wiki locally