| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- {
- "name": "tiktok-user-posts",
- "displayName": "TikTok 用户作品列表",
- "description": "获取指定 TikTok 用户发布的视频列表,包括每个视频的播放量和互动数据。用于竞品内容策略分析、红人内容表现评估。",
- "category": "social-media",
- "version": "1.0.0",
- "endpoint": {
- "method": "GET",
- "url": "https://server.fmode.cn/thapi/v1/tiktok/app/v3/fetch_user_post_videos",
- "headers": {
- "Authorization": "Bearer tKIbAsEM8X+GmE2vHqGW7D/ICwK1Q5V4viKFrWiPB6HholGdLFqZJmmyNw==",
- "Accept": "application/json"
- }
- },
- "parameters": {
- "type": "object",
- "required": [
- "sec_user_id"
- ],
- "properties": {
- "sec_user_id": {
- "type": "string",
- "description": "用户的安全 ID(secUid),需先通过 tiktok_user_profile 接口获取"
- },
- "count": {
- "type": "integer",
- "description": "每页视频数量",
- "default": 20,
- "maximum": 30
- },
- "cursor": {
- "type": "integer",
- "description": "分页游标",
- "default": 0
- }
- }
- },
- "requestTransform": {
- "queryParams": {
- "sec_user_id": "{{sec_user_id}}",
- "count": "{{count}}",
- "cursor": "{{cursor}}"
- }
- },
- "response": {
- "type": "object",
- "description": "用户视频列表",
- "properties": {
- "aweme_list": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "aweme_id": {
- "type": "string",
- "description": "视频 ID"
- },
- "desc": {
- "type": "string",
- "description": "视频描述"
- },
- "statistics": {
- "type": "object",
- "properties": {
- "play_count": {
- "type": "integer"
- },
- "digg_count": {
- "type": "integer"
- },
- "comment_count": {
- "type": "integer"
- },
- "share_count": {
- "type": "integer"
- }
- }
- },
- "create_time": {
- "type": "integer",
- "description": "发布时间戳"
- }
- }
- }
- },
- "has_more": {
- "type": "boolean"
- },
- "cursor": {
- "type": "integer"
- }
- }
- },
- "notes": "sec_user_id 需先通过 tiktok_user_profile 获取。该接口可用于分析竞品品牌的内容发布频率和互动表现。",
- "relatedSkills": [
- "tiktok_user_profile"
- ],
- "usageExamples": [
- {
- "name": "获取品牌视频列表",
- "input": {
- "sec_user_id": "MS4wLjABAAAA...",
- "count": 20
- },
- "description": "获取品牌最近 20 条视频的播放和互动数据"
- }
- ],
- "reportMapping": {
- "slides": [
- "竞品对标(Slide4)",
- "社媒聆听(Slide14)"
- ],
- "dataPoints": [
- "内容发布频率",
- "视频平均播放量",
- "内容类型分布"
- ]
- },
- "timeout": 15000,
- "retry": {
- "maxAttempts": 3,
- "delay": 1500,
- "backoffMultiplier": 2
- }
- }
|