Authorization: Bearer ********************
{
"article_id": 0,
"content": "string",
"parent_comment_id": 0,
"reply_comment_id": 0,
"to_user_id": 0
}
curl --location --request POST '/comment/create' \
--header 'Content-Type: application/json' \
--data-raw '{
"article_id": 0,
"content": "string",
"parent_comment_id": 0,
"reply_comment_id": 0,
"to_user_id": 0
}'
{
"code": 0,
"data": {
"nowPage": 0,
"pageSize": 0,
"hasMore": true,
"count": 0,
"rows": [
{
"id": 0,
"article_id": 0,
"parent_comment_id": 0,
"reply_comment_id": 0,
"from_user_id": 0,
"to_user_id": 0,
"content": "string",
"children_comment_total": 0,
"star_total": 0,
"ua": "string",
"ip": "string",
"ip_data": "string",
"created_at": "string",
"updated_at": "string",
"deleted_at": null
}
]
},
"message": "string"
}