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