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 /feed/:id

认证

可选 JWT

响应

{
  id: string,
  owner: ResponseUserProfileSchema,
  image: ResponseImageSchema,      // 所有 feed 都包含(即使 mediaType=video/audio,这里是 cover/thumb)
  video?: ResponseFeedVideoSchema, // mediaType = "video" 时
  audio?: ResponseFeedAudioSchema, // mediaType = "audio" 时
  mediaType: "image" | "video" | "audio",
  originImageId: string,
  createdAt: string,
  likedNumber: number,
  flag: string[]                   // "nsfw" / "duplicate" / "ban"
}

权限

  • 非 owner + flag 含 nsfw → 404
  • owner 可查看自己的 nsfw feed

src/hono/feed/index.ts:497

相关