Files
zy d7f176a66f feat(profile): 主页支持按 tab 读取笔记 / 收藏 / 点赞 (#790)
get_my_profile 与 user_profile 新增 tab 参数:note(默认) / fav / liked,
也接受中文「笔记 / 收藏 / 点赞」。

各 tab 的内容存在各自的下标里,改为只取当前 tab 的那一份——原先把所有
下标展平合并,多 tab 场景下会把不同 tab 的内容混在一起。

tab 与请求不符时报错:参数不被接受时页面会落在默认 tab 且不报错,
不拦住会把默认 tab 的内容当成结果返回。

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
2026-08-02 16:00:14 +08:00

145 lines
4.6 KiB
Go

package main
import "github.com/xpzouying/xiaohongshu-mcp/xiaohongshu"
// HTTP API 响应类型
// ErrorResponse 错误响应
type ErrorResponse struct {
Error string `json:"error"`
Code string `json:"code"`
Details any `json:"details,omitempty"`
}
// SuccessResponse 成功响应
type SuccessResponse struct {
Success bool `json:"success"`
Data any `json:"data"`
Message string `json:"message,omitempty"`
}
// MCP 相关类型(用于内部转换)
// MCPToolResult MCP 工具结果(内部使用)
type MCPToolResult struct {
Content []MCPContent `json:"content"`
IsError bool `json:"isError,omitempty"`
}
// MCPContent MCP 内容(内部使用)
type MCPContent struct {
Type string `json:"type"`
Text string `json:"text"`
MimeType string `json:"mimeType"`
Data string `json:"data"`
}
// CommentLoadConfig 评论加载配置
type CommentLoadConfig struct {
// 是否点击"更多回复"按钮
ClickMoreReplies bool `json:"click_more_replies,omitempty"`
// 回复数量阈值,超过这个数量的"更多"按钮将被跳过(0表示不跳过任何)
MaxRepliesThreshold int `json:"max_replies_threshold,omitempty"`
// 最大加载评论数(.parent-comment数量),0表示加载所有
MaxCommentItems int `json:"max_comment_items,omitempty"`
// 滚动速度等级: slow(慢速), normal(正常), fast(快速)
ScrollSpeed string `json:"scroll_speed,omitempty"`
}
// FeedDetailRequest Feed详情请求
type FeedDetailRequest struct {
FeedID string `json:"feed_id" binding:"required"`
XsecToken string `json:"xsec_token" binding:"required"`
LoadAllComments bool `json:"load_all_comments,omitempty"`
CommentConfig *CommentLoadConfig `json:"comment_config,omitempty"`
}
type SearchFeedsRequest struct {
Keyword string `json:"keyword" binding:"required"`
Filters xiaohongshu.FilterOption `json:"filters,omitempty"`
}
// FeedDetailResponse Feed详情响应
type FeedDetailResponse struct {
FeedID string `json:"feed_id"`
Data any `json:"data"`
}
// PostCommentRequest 发表评论请求
type PostCommentRequest struct {
FeedID string `json:"feed_id" binding:"required"`
XsecToken string `json:"xsec_token" binding:"required"`
Content string `json:"content" binding:"required"`
}
// PostCommentResponse 发表评论响应
type PostCommentResponse struct {
FeedID string `json:"feed_id"`
Success bool `json:"success"`
Message string `json:"message"`
}
// ReplyCommentRequest 回复评论请求
type ReplyCommentRequest struct {
FeedID string `json:"feed_id" binding:"required"`
XsecToken string `json:"xsec_token" binding:"required"`
CommentID string `json:"comment_id" binding:"required_without=UserID"`
UserID string `json:"user_id" binding:"required_without=CommentID"`
Content string `json:"content" binding:"required"`
}
// ReplyCommentResponse 回复评论响应
type ReplyCommentResponse struct {
FeedID string `json:"feed_id"`
TargetCommentID string `json:"target_comment_id,omitempty"`
TargetUserID string `json:"target_user_id,omitempty"`
Success bool `json:"success"`
Message string `json:"message"`
}
// UserProfileRequest 用户主页请求
type UserProfileRequest struct {
UserID string `json:"user_id" binding:"required"`
XsecToken string `json:"xsec_token" binding:"required"`
Tab string `json:"tab,omitempty"`
}
// LikeFeedRequest 点赞/取消点赞请求
type LikeFeedRequest struct {
FeedID string `json:"feed_id" binding:"required"`
XsecToken string `json:"xsec_token" binding:"required"`
Unlike bool `json:"unlike,omitempty"` // true 为取消点赞
}
// FavoriteFeedRequest 收藏/取消收藏请求
type FavoriteFeedRequest struct {
FeedID string `json:"feed_id" binding:"required"`
XsecToken string `json:"xsec_token" binding:"required"`
Unfavorite bool `json:"unfavorite,omitempty"` // true 为取消收藏
}
// ActionResult 通用动作响应(点赞/收藏等)
type ActionResult struct {
FeedID string `json:"feed_id"`
Success bool `json:"success"`
Message string `json:"message"`
}
// ListNotificationsRequest 通知列表请求
type ListNotificationsRequest struct {
Tab string `json:"tab,omitempty"`
Limit int `json:"limit,omitempty"`
}
// ReplyNotificationRequest 通知回复请求
type ReplyNotificationRequest struct {
CommentID string `json:"comment_id" binding:"required"`
Content string `json:"content" binding:"required"`
}
// LikeNotificationRequest 通知点赞请求
type LikeNotificationRequest struct {
CommentID string `json:"comment_id" binding:"required"`
Unlike bool `json:"unlike,omitempty"`
}