luogu-api-docs

动态 API

获取用户动态

请求 GET /api/feed/list
参数 { user?: number; page?: number }
响应主体 application/json ({ feeds: List<Activity> })

获取关注的用户的动态

请求 GET /api/feed/watching
参数 { page?: number }
响应主体 application/json ({ status: number; data: ActivityData[] })

发布动态

请求 POST /api/feed/postBenben
请求主体 application/x-www-form-urlencoded ({ content: string })
响应主体 application/json ({ status: number; data: ActivityData })

删除动态

请求 POST /api/feed/delete/:id
响应主体 application/json ({ status: number; data: [] })

举报动态

请求 POST /api/report/feed
请求主体 application/x-www-form-urlencoded ({ relevantID: number; reason: string })
响应主体 application/json ({ status: number; data: string })