文档
测试

发布帖子(提问、心得)

POST
/app/addForumPost

请求头

参数名
类型
描述
必填
token
String
必填

请求参数

参数名
类型
描述
必填
forumClassId
int
论坛频道ID
必填
content
String
帖子内容
必填
contentType
int
内容类型:1纯文字, 2 图片+文字, 3 视频+文字
必填
imgList
array
图片 key 列表
必填
video
String
视频 key
必填
themeId
int
论坛话题ID
必填

响应参数

参数名
类型
描述
必填
code
int
状态码 0 成功 其他失败
必填
msg
String
响应信息
必填

说明 / 示例

`请求示例` ```java { "forumClassId": 301, "content": "测试发帖子", "contentType": 2, "imgList": [ "q", "b" ], "video": null, "themeId": 2 } ``` ## `返回示例` ```java { "code": 0, "msg": "发布成功!", "obj": null } ```