Skip to main content

Documentation Index

Fetch the complete documentation index at: https://tech.illasoft.com/llms.txt

Use this file to discover all available pages before exploring further.

路径

DELETE /like/:feedId

认证

Bearer JWT

响应

返回被删除的 user_liked_feeds 行:
{
  id: string,
  owner_id: string,
  feed_id: string,
  created_at: string
}

副作用

  • DELETE user_liked_feeds WHERE owner_id = ? AND feed_id = ?
  • UPDATE feed SET liked_number = liked_number - 1 仅在确实删除了行时

错误

状态含义
404未点赞过

src/hono/like/index.ts

相关