### **帖子類型說明(仿微博,分開類型前端容易排版面)**
帖子類型有三種: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"
}
~~~