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.

路径

GET /user/:userId/feed

认证

可选 JWT

Query 参数

名称类型说明
cursorstring上一页最后一条的 created_at
每页 20 条。

响应

{
  feeds: ResponseFeedSchema[],
  hasMore: boolean
}

nsfw 过滤

  • requester !== owner:过滤 flag[] includes "nsfw" 的 feed
  • requester === owner:所有 feed 可见
  • 未登录:按非 owner 处理

src/hono/user/index.ts

相关