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