{ "name": "asin-reverse-keywords", "displayName": "ASIN 反查关键词", "description": "根据 ASIN 反向查询该产品关联的搜索关键词列表,包括搜索排名、搜索量等。用于竞品关键词策略分析、广告关键词挖掘。", "category": "voc", "version": "1.3.0", "endpoint": { "method": "POST", "url": "https://server.fmode.cn/api/voc-ecom/forward", "headers": { "Content-Type": "application/json", "Authorization": "Bearer {{vocToken}}" } }, "parameters": { "type": "object", "required": [ "ASIN" ], "properties": { "ASIN": { "type": "string", "description": "Amazon 产品 ASIN(10位大写字母数字)", "pattern": "^[A-Z0-9]{10}$" }, "domain": { "type": "integer", "description": "Amazon 站点 ID: 1=amazon.com", "default": 1 } } }, "requestTransform": { "template": { "path": "/api/ASINRequestKeyword", "method": "POST", "query": { "domain": "{{domain}}" }, "body": { "ASIN": "{{ASIN}}" } } }, "response": { "type": "array", "description": "关键词列表", "items": { "type": "object", "properties": { "Keyword": { "type": "string", "description": "关键词" }, "SearchVolume": { "type": "integer", "description": "月搜索量" }, "Rank": { "type": "integer", "description": "该ASIN在此关键词下的排名" }, "CompetitorCount": { "type": "integer", "description": "竞争产品数" } } } }, "usageExamples": [ { "name": "反查竞品关键词", "input": { "ASIN": "B0B24QJ217", "domain": 1 }, "description": "查看 COCORRINA Reed Diffuser 排名靠前的搜索关键词" } ], "reportMapping": { "slides": [ "广告关键词引擎(Slide15)" ], "dataPoints": [ "竞品关键词列表", "搜索排名", "搜索量" ] }, "timeout": 60000, "retry": { "maxAttempts": 3, "delay": 1000, "backoffMultiplier": 2 }, "tokenConfig": { "type": "bearer", "configFile": "~/.openclaw/voc-credentials.json", "tokenField": "vocToken", "resolutionOrder": [ "configFile" ], "apigId": "7HwdQZk55B", "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=7HwdQZk55B&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": "7HwdQZk55B", "fun_id": "HOkkX72PMF" }, "balanceCheckEndpoint": "https://server.fmode.cn/api/apig/getApig" }, "onMissing": { "action": "showPaymentQR", "qrCodeUrl": "https://app.fmode.cn/dev/apig-pay/?apigid=7HwdQZk55B&fun_id=HOkkX72PMF", "title": "扫码开通 VOC-AI 数据服务", "message": "此 Skill 需要有效的 API Token。请先打开充值页面完成登录和充值;当用户提供 session token 后,请由 OpenClaw 运行 node scripts/tools/set-voc-token.js 写入 ~/.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 写入 ~/.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" } } }