Henry's Notebook
Many strange things
搜索
菜单
导航
首页
最近更改
随机页面
帮助
Henry's Home
个人资料
个人资料
创建账户
登录
消息
目前您没有通知。请访问您的
讨论页
以查看过去消息。
页面工具
内容页面
讨论
查看源代码
历史
首页
»
页面s
查看“BBS数据接口”的源代码
←
BBS数据接口
页面上次由
HenryHu
编辑于9年前
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:emailconfirmed
您可以查看与复制此页面的源代码。
== 登录 == [[BBS OAuth]] == 版面 == === 列出版面 === : '''GET''' /board/list {| class="wikitable" |- ! Parameter !! Type !! Description !! Optional |- | session || string || Session Token || No |- | start || int || ID of the first post to list || Yes |- | end || int || ID of the last post to list || Yes |- | count || int || Number of posts to list || Yes |} * Return value ** Success: [{"name": <string: Board name>, "read": <Boolean: Board read?>, "BM": <string: BMs>, "id": <int: Board id>, "total": <int: Total post count>, "currentusers": <int: Current users count>},{...}...] === 获取帖子列表 === : '''GET''' /board/post_list {| class="wikitable" |- ! Parameter !! Type !! Description !! Optional !! Choices |- | session || string || Session Token || No |- | name || string || Name of the board to list || No |- | mode || string || Mode of this board to list || Yes || '''normal'''/digest/mark/deleted/junk |- | start || int || ID of the first post to list || Yes |- | end || int || ID of the last post to list || Yes |- | count || int || Number of posts to list || Yes |} == 帖子 == === 获取帖子 === : '''GET''' /post/view {| class="wikitable" |- ! Parameter !! Type !! Description !! Optional |- | session || string || Session Token || No |- | id || int || ID of the post in this board || No |- | board || string || Name of the board this post belongs to || No |} === 获取附件 === : '''GET''' /post/get_attach {| class="wikitable" |- ! Parameter !! Type !! Description !! Optional !! Choices |- | session || string || Session Token || No |- | id || int || ID of the post in this board || No |- | board || string || Name of the board this post belongs to || No |- | mode || string || Mode of the board this ID corresponds to || Yes || '''normal'''/digest/mark/deleted/junk |- | offset || int || Offset of the attachment in the post, returned in "view" || No |} == 收藏夹 == === 列出收藏夹 === : '''GET''' /favboard/list {| class="wikitable" |- ! Parameter !! Type !! Description !! Optional |- | session || string || Session Token || No |- | father || int || Parent directory of boards to list || Yes |- | start || int || ID of the first post to list || Yes |- | end || int || ID of the last post to list || Yes |- | count || int || Number of posts to list || Yes |} == 会话 == === 验证会话 === : '''GET''' /session/verify {| class="wikitable" |- ! Parameter !! Type !! Description !! Optional |- | session || string || Session Token || No |}
返回至
BBS数据接口
。