Authorization: Bearer ********************
{
"uuid": "xxxxxxx", // 稿件唯一id
"text": "xxxx", // 文字内容
"images": [ // 图片
"imagekey0",
"imagekey1"
],
"anon": false // 是否匿名
}
curl --location --request POST '/v1/post/post-new' \
--header 'Content-Type: application/json' \
--data-raw '{
"uuid": "xxxxxxx", // 稿件唯一id
"text": "xxxx", // 文字内容
"images": [ // 图片
"imagekey0",
"imagekey1"
],
"anon": false // 是否匿名
}'
{
"code": 0,
"msg": "ok",
"data": {
"id": 10
}
}