/action/openapi/post_list
/action/openapi/post_list
获取讨论区的帖子列表(对应android的 问答 分享 综合 职业 站务)
URL
/action/openapi/post_list
支持格式
JSON JSONP XML
HTTP请求方式
GET/POST
是否需要登录
否
访问授权限制
暂无
授权范围(scope)
访问帖子信息
请求参数
必选 | 类型及范围 | 说明 | 默认值 | |
---|---|---|---|---|
access_token | true | string | oauth2_token获取的access_token | |
catalog | false | int | 类别ID 1-问答 2-分享 3-IT杂烩(综合) 4-站务 100-职业生涯 0-所有 | 0 |
tag | false | string | 帖子相关标签 | |
pageSize | false | int | 每页条数 | 20 |
page/pageIndex | false | int | 页数 | 1 |
dataType | true | string | 返回数据类型['json'|'jsonp'|'xml'] | json |
注意事项
catalog 与 tag 不同时使用,使用 tag 则为获取标签相关列表,使用 catalog 则列出分类列表。
返回结果
JSON
- {
- "post_list": [
- {
- "id": 82977,
- "author": "彭博",
- "pubDate": "2012-12-18 16:20:08.0",
- "title": "测试youku视频地址",
- "answerCount": 0,
- "authorid": 89964,
- "answer": "",
- "portrait": "http://static.oschina.net/uploads/user/44/89964_50.jpg?t=1376365607000",
- "viewCount": 12
- },
- {
- "id": 83123,
- "author": "彭博",
- "pubDate": "2013-05-24 10:34:40.0",
- "title": "测试站外活动",
- "answerCount": 0,
- "authorid": 89964,
- "answer": "",
- "portrait": "http://static.oschina.net/uploads/user/44/89964_50.jpg?t=1376365607000",
- "viewCount": 0
- }
- ],
- "notice": {
- "replyCount": 0,
- "msgCount": 0,
- "fansCount": 0,
- "referCount": 0
- }
- }
返回字段说明
返回值字段 | 类型及范围 | 说明 |
---|---|---|
post_list.id | int | 帖子ID |
post_list.authorid | long | 发布者ID |
post_list.author | string | 发帖人 |
post_list.pubDate | datetime | 发布时间 |
post_list.title | string | 帖子标题 |
post_list.answerCount | int | 回复数 |
post_list.answer.time | datetime | 最后回帖时间 |
post_list.answer.name | string | 最后回帖用户 |
post_list.portrait | string | 发帖人用户头像地址 |
post_list.viewCount | int | 浏览数 |
notice.replyCount | int | 未读评论数 |
notice.msgCount | int | 未读私信数 |
notice.fansCount | int | 新增粉丝数 |
notice.referCount | int | 未读@我数 |
错误说明