写入数据

请求 - POST

参数必填格式说明

token

必填

string

请求密钥

title

必填

string

内容标题

module
必填stringnews/文章,product/产品
mid必填string栏目ID,后台获取
content必填string内容
......选填
更多选填参数请看应用说明
//POST的数据格式为JSON
{
    "token": "", //后台填写的写入TOKEN
    "title": "",
    "module": "news",
    "mid": "",
    "content": ""
}

返回

success

{
    "code": 1,
    "msg": "success",
    "data": {
        "id": 1,
        "url": "https://domain.com/show/news-1.html"
    }
}

error

{
    "code": 0,
    "msg": "ERROR"
}
大纲