文档
测试

用户给某个帖子取消点赞

POST
http://localhost:3000/api/web/post/unlike

请求参数

参数名
类型
描述
必填
post_id
number
帖子id
必填
account
string
用户账号
必填

说明 / 示例

成功返回: ```json { "code": 200, "msg": "取消点赞成功" } ``` 失败返回: ```json { "code": 202, "msg": "尚未点赞" } ```