{
"title": "string",
"summary": "string",
"content": "string"
}
curl --location --request POST 'http://localhost:8080/api/blogs' \
--header 'Authorization: Bearer {{jwttoken}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "string",
"summary": "string",
"content": "string"
}'
{
"code": 0,
"message": "string",
"data": {
"id": 0,
"title": "string",
"summary": "string",
"content": "string",
"likes": 0,
"favorites": 0
}
}