| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- {
- "name": "douyin-video-comments",
- "displayName": "抖音视频评论查询",
- "description": "获取抖音视频的用户评论列表,支持翻页。直接反映用户对产品/内容的真实评价,是VOC情感分析、痛点挖掘、需求发现的核心数据源。",
- "category": "douyin",
- "version": "1.3.0",
- "endpoint": {
- "method": "GET",
- "url": "https://server.fmode.cn/api/voc-social/douyin/app/v3/fetch_video_comments",
- "headers": {
- "Authorization": "Bearer ${vocToken}",
- "Accept": "application/json"
- }
- },
- "parameters": {
- "type": "object",
- "required": [
- "aweme_id"
- ],
- "properties": {
- "aweme_id": {
- "type": "string",
- "description": "抖音作品 ID"
- },
- "cursor": {
- "type": "integer",
- "description": "分页游标,首次传 0,后续使用上次返回的 cursor 值",
- "default": 0
- },
- "count": {
- "type": "integer",
- "description": "每页数量,请保持默认值 20",
- "default": 20
- }
- }
- },
- "requestTransform": {
- "queryParams": {
- "aweme_id": "{{aweme_id}}",
- "cursor": "{{cursor}}",
- "count": "{{count}}"
- }
- },
- "response": {
- "type": "object",
- "description": "评论数据(双层包装:{code, data},评论在 data 内)",
- "note": "顶层 {code:200, data:{...}},评论列表、翻页、总数均在 data 内。",
- "properties": {
- "code": {
- "type": "integer",
- "description": "HTTP 状态码(200=成功)"
- },
- "data": {
- "type": "object",
- "description": "业务数据包装层",
- "properties": {
- "comments": {
- "type": "array",
- "description": "评论列表,每项含 text(评论正文)、user(评论者)、digg_count(点赞)、reply_comment_total(回复数)、create_time 等"
- },
- "has_more": {
- "type": "integer",
- "description": "是否有更多评论(1=有,0=无)"
- },
- "cursor": {
- "type": "integer",
- "description": "下一页游标,翻页时作为 cursor 参数传入"
- },
- "total": {
- "type": "integer",
- "description": "评论总数"
- }
- }
- }
- },
- "keyFields": {
- "data.comments[].text": "评论正文(VOC 核心数据)",
- "data.comments[].user.nickname": "评论者昵称",
- "data.comments[].user.uid": "评论者 ID",
- "data.comments[].digg_count": "评论获赞数(高赞=共识)",
- "data.comments[].reply_comment_total": "回复数,可用 douyin-comment-replies 获取",
- "data.comments[].create_time": "评论时间戳(秒)",
- "data.comments[].ip_label": "评论 IP 地域",
- "data.has_more": "翻页终止条件",
- "data.cursor": "下一页游标",
- "data.total": "评论总数"
- }
- },
- "usageExamples": [
- {
- "name": "爆款视频用户声音采集",
- "input": {
- "aweme_id": "7448118827402972455",
- "cursor": 0,
- "count": 20
- },
- "description": "获取爆款视频前20条评论,提取用户对产品的真实评价和购买意愿"
- },
- {
- "name": "翻页采集更多评论",
- "input": {
- "aweme_id": "7448118827402972455",
- "cursor": 20,
- "count": 20
- },
- "description": "使用上次返回的 cursor 值翻页,累计采集更多用户评论"
- }
- ],
- "workflow": {
- "description": "推荐调用链",
- "steps": [
- "上游: douyin-general-search(keyword, sort_type='1') → 找到高点赞爆款视频",
- "上游: douyin-video-detail(aweme_id) → 确认视频互动数据",
- "本步: douyin-video-comments(aweme_id) → 批量采集用户评论",
- "下游: douyin-comment-replies(item_id, comment_id) → 获取热评下的回复"
- ]
- },
- "reportMapping": {
- "slides": [
- "社媒聆听(Slide14)"
- ],
- "dataPoints": [
- "用户痛点关键词",
- "正向/负向情感分布",
- "高频需求词提取",
- "评论点赞数(热评识别)",
- "用户购买意向信号"
- ]
- },
- "timeout": 60000,
- "retry": {
- "maxAttempts": 3,
- "delay": 1500,
- "backoffMultiplier": 2
- },
- "tokenConfig": {
- "type": "bearer",
- "configFile": "~/.openclaw/voc-credentials.json",
- "tokenField": "vocToken",
- "resolutionOrder": [
- "configFile"
- ],
- "apigId": "Vo3ROWEvDy",
- "paymentUrlResolution": {
- "description": "动态构建充值URL:在已存在 session token 时查出用户 objectId,拼接到专属充值页面",
- "steps": [
- "1. 从 voc-credentials.json 获取当前 session token",
- "2. 调用 GET https://server.fmode.cn/parse/users/me (Header: X-Parse-Application-Id: ncloudmaster, X-Parse-Session-Token: {token})获取用户 objectId",
- "3. 拼接充值URL: https://app.fmode.cn/dev/apig-pay/?user={objectId}&apigid=Vo3ROWEvDy&fun_id=HOkkX72PMF",
- "4. 将该URL展示给用户,引导扫码支付"
- ],
- "userResolveEndpoint": "https://server.fmode.cn/parse/users/me",
- "userResolveHeaders": {
- "X-Parse-Application-Id": "ncloudmaster",
- "X-Parse-Session-Token": "{vocToken}"
- },
- "paymentBaseUrl": "https://app.fmode.cn/dev/apig-pay/",
- "paymentParams": {
- "user": "{resolvedUserId}",
- "apigid": "Vo3ROWEvDy",
- "fun_id": "HOkkX72PMF"
- },
- "balanceCheckEndpoint": "https://server.fmode.cn/api/apig/getApig"
- },
- "onMissing": {
- "action": "showPaymentQR",
- "qrCodeUrl": "https://app.fmode.cn/dev/apig-pay/?apigid=Vo3ROWEvDy&fun_id=HOkkX72PMF",
- "title": "扫码开通 VOC-AI 数据服务",
- "message": "此 Skill 需要有效的 API Token。请先打开充值页面完成登录和充值;当用户提供 session token 后,请由 OpenClaw 运行 node scripts/tools/set-voc-token.js <session-token> 写入 ~/.openclaw/voc-credentials.json 的 vocToken 字段,再重试当前 Skill。",
- "tokenSetupCommandTemplate": "node scripts/tools/set-voc-token.js {sessionToken}",
- "tokenSetupInstructions": "当用户完成登录和充值后,如果用户把 session token 发给你,请直接运行 node scripts/tools/set-voc-token.js <session-token> 写入 ~/.openclaw/voc-credentials.json,然后重试当前 Skill。"
- },
- "onBalanceInsufficient": {
- "action": "resolveUserThenShowPayment",
- "title": "VOC-AI Token 余额不足,请扫码充值",
- "message": "当前 Token 余额不足,我将为你生成专属充值链接,扫码支付后即可继续使用。"
- }
- },
- "errorHandling": {
- "balanceInsufficient": {
- "conditions": [
- {
- "responseField": "code",
- "operator": "in",
- "value": [
- -2,
- -3,
- -10,
- 402,
- 429
- ]
- },
- {
- "responseField": "msg",
- "operator": "contains",
- "value": [
- "余额不足",
- "insufficient",
- "balance",
- "quota",
- "没有开通",
- "权限或余额"
- ]
- },
- {
- "responseField": "mess",
- "operator": "contains",
- "value": [
- "余额不足",
- "insufficient",
- "balance",
- "quota",
- "没有开通",
- "权限或余额"
- ]
- },
- {
- "responseField": "message",
- "operator": "contains",
- "value": [
- "余额不足",
- "insufficient",
- "balance",
- "没有开通",
- "权限或余额"
- ]
- }
- ],
- "matchMode": "any",
- "trigger": "tokenConfig.onBalanceInsufficient"
- },
- "unauthorized": {
- "conditions": [
- {
- "responseField": "code",
- "operator": "in",
- "value": [
- 401,
- 403
- ]
- },
- {
- "responseField": "msg",
- "operator": "contains",
- "value": [
- "unauthorized",
- "token",
- "invalid",
- "auth"
- ]
- }
- ],
- "matchMode": "any",
- "trigger": "tokenConfig.onMissing"
- }
- }
- }
|