### **帖子类型说明(仿微博,分开类型前端容易排版面)**
帖子类型有三种:text 、 picture 、video
当为text时,可像正常发新闻一样,提交内容(content)
当为picture时,可提交内容(content)和图片(pictures)
当为video时,可提交内容(content)和视频(video)
~~~[api]
POST:/interflow/release
*int:category_id=null#分类ID
*string:type=text#帖子类型
string:content=null#帖子正文内容
string:pictures=null#帖子图片
string:video=null#帖子视频
<<<
success
{
"category_id": "10",
"uid": null,
...
"updated_at": "2021-03-30 22:26:24",
"created_at": "2021-03-30 22:26:24",
"id": 2
}
<<<
error
{
"error": "发布失败",
"code": "RELEASE_FAIL"
}
~~~