/action/openapi/user_blog_list
/action/openapi/user_blog_list
获取用户博客列表
URL
/action/openapi/user_blog_list
支持格式
JSON JSONP XML
HTTP请求方式
GET/POST
是否需要登录
否
访问授权限制
暂无
授权范围(scope)
访问博客信息
请求参数
必选 | 类型及范围 | 说明 | 默认值 | |
---|---|---|---|---|
access_token | false | string | oauth2_token获取的access_token 当提供的access_token和authoruid是同一用户则显示私有博客 | |
authoruid | false | int | 用户ID(authoruid authorname任选一种) | 0 |
authorname | false | string | 用户Ident(authoruid authorname任选一种) | null |
page/pageIndex | true | int | 页数 | 1 |
pageSize | true | int | 每页条数 | 20 |
dataType | true | string | 返回数据类型['json'|'jsonp'|'xml'] | json |
注意事项
暂无
返回结果
JSON
- {
- "count": 111,
- "notice": {
- "replyCount": 0,
- "msgCount": 0,
- "fansCount": 0,
- "referCount": 0
- },
- "bloglist": [
- {
- "id": 49090,
- "pubDate": "2012-03-13 23:01:52.0",
- "author": "whxia320",
- "title": "mongodb for java使用中的小问题",
- "authorid": 100399,
- "type": 1,
- "commentCount": 7
- }
- ]
- }
返回字段说明
返回值字段 | 类型及范围 | 说明 |
---|---|---|
count | int | 博客总数 |
bloglist.id | long | 博客id |
bloglist.author | string | 投递者名称 |
bloglist.title | string | 博客标题 |
bloglist.pubDate | datetime | 发布日期 |
bloglist.authorid | long | 投递者编号 |
bloglist.commentCount | int | 评论数 |
bloglist.type | long | 1-原创 4-转载 |
错误说明