-
Notifications
You must be signed in to change notification settings - Fork 70
statuses.replies.rest
lisztli edited this page Apr 26, 2012
·
2 revisions
#GET /statuses/replies/
显示回复当前用户的消息
##路径
http://rest.fanfou.com/statuses/replies/
##调用方法
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/replies/?oauth_token=oauth_token&count=3" | python -mjson.tool
- 返回值
[
{
"created_at": "Wed Apr 25 07:32:18 +0000 2012",
"favorited": "false",
"id": 20120038,
"text": "@marcher\u55ef\u54fc woo",
"user": {
"created_at": "Sat May 12 15:58:58 +0000 2007",
"description": "my_desc",
"favourites_count": 72,
"followed": true,
"followers_count": 622,
"following": true,
"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": 6646,
"url": "moon",
"website": "http://nimei.org"
},
"wid": "cKza1nexeAI"
},
{
"created_at": "Wed Apr 25 07:32:11 +0000 2012",
"favorited": "false",
"id": 20120037,
"text": "@marcher\u55ef\u54fc eee",
"user": {
"created_at": "Sat May 12 15:58:58 +0000 2007",
"description": "my_desc",
"favourites_count": 72,
"followed": true,
"followers_count": 622,
"following": true,
"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": 6646,
"url": "moon",
"website": "http://nimei.org"
},
"wid": "ROLuexs_7zo"
},
{
"created_at": "Wed Apr 25 07:32:06 +0000 2012",
"favorited": "false",
"id": 20120036,
"text": "@marcher\u55ef\u54fc ppp",
"user": {
"created_at": "Sat May 12 15:58:58 +0000 2007",
"description": "my_desc",
"favourites_count": 72,
"followed": true,
"followers_count": 622,
"following": true,
"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": 6646,
"url": "moon",
"website": "http://nimei.org"
},
"wid": "1jCgMqSiYaY"
}
]