Documents

Shopee-店铺广告

Try it

Shopee(虾皮)店铺站内广告 Ads(与 linkfox-shopee-store-auth 同系列),经 /shopee/developerProxy 转发 Shopee Open API Ads 模块 23 个接口:get_total_balance、create_manual_product_ads、get_product_campaign_daily_performance、GMS 广告等。调用前须确认目标店已有 appType=ad 授权(ERP 授权不能代替)。当用户提到 Shopee 广告、Ads、广告余额、CPC、商品推广、手动广告、campaign、广告效果、ROI、get_total_balance、广告授权 时触发。即使未明确提及"广告",只要涉及已授权 Shopee 店铺的广告账户、推广或效果查询,也应触发。

What it does

Shopee(虾皮)店铺站内广告 Ads(与 linkfox-shopee-store-auth 同系列),经 /shopee/developerProxy 转发 Shopee Open API Ads 模块 23 个接口:get_total_balance、create_manual_product_ads、get_product_campaign_daily_performance、GMS 广告等。调用前须确认目标店已有 appType=ad 授权(ERP 授权不能代替)。当用户提到 Shopee 广告、Ads、广告余额、CPC、商品推广、手动广告、campaign、广告效果、ROI、get_total_balance、广告授权 时触发。即使未明确提及"广告",只要涉及已授权 Shopee 店铺的广告账户、推广或效果查询,也应触发。

The skill document

Shopee 店铺 Ads

Shopee Open Platform Ads 模块(23 个 API,不含即将下线的 auto product ads)。依赖 linkfox-shopee-store-auth;须目标店存在 appType=ad 授权。经 POST /shopee/developerProxy 传入 shopId(或 merchantId)+ api/v2/ads/... 路径,服务端自动走 AD 应用 Token(accessToken / appType)。

调用方式

  • API 端点POST /shopee/developerProxy(不同操作通过请求体区分;完整参数/响应/错误码见 references/api.md
  • Python 脚本python scripts/<脚本名>.py '' [--inline](可用脚本见上文脚本一览)
  • 成本约束:本工具会消耗积分;失败/空结果不得自动换关键词、翻页或连续试探;需要继续检索时先向用户说明会产生额外消耗。

输出策略(脚本默认行为)

  • 始终将完整响应写入 /linkfox///data/linkfox-shopee-store-ads-.json 为脚本执行时的工作目录,在 Claude Code 里即当前项目目录; 取自环境变量 SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)
  • 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
  • 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数如 total/costToken、最大列表字段的长度 + 前 3 条样本)
  • --inline 强制全量打印到 stdout(同样落盘)

读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jqConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。

解决认证和积分问题

发生以下异常情况时,采用 references/onboarding.md 引导解决问题:

异常情况

  • 未配置API Key:环境变量未配置 LINKFOX_AGENT_API_KEY,也未配置 LINKFOXAGENT_API_KEY
  • 响应401或402状态码
  • 响应提示积分或余额不足:消息含"积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/套餐到期/需充值/请充值",或类似含义的内容。

官方参考

Ads 模块索引:v2.ads.get_total_balance


Prerequisites(必须先读)

  1. 运行 python scripts/check_auth_dependency.py;exit code 42 → 先安装 linkfox-shopee-store-auth
  2. 不要在本 skill 内实现授权/令牌逻辑;授权一律走 auth skill。
  3. 调用业务 API 之前,用 auth 的 authorized_stores.py 确认目标店存在 appType=ad
    • 仅有 appType=erp(或历史空值)→ 不能当广告已授权;引导 authorize_url.py 且传 appType=ad
    • 两项都缺 → 若用户只要广告,只开 AD 授权即可(不必先开 ERP)
  4. Ads API 还需 Shopee 侧开通广告能力;并非所有站点/店铺可用。
  5. 禁止developerProxyaccessTokenappType;path 用 api/v2/ads/** 即可由服务端路由到 AD。

Core Concepts

  • AD 与 ERP 分离:广告 Token 与 ERP Token 独立;店铺在列表中存在 ≠ 广告已授权
  • 转发链路developerProxyshopId/merchantId + api/v2/ads/...,服务端注入 AD token)→ 紫鸟 shopee-proxy/ad/... → Shopee API
  • 余额get_total_balance 查广告账户余额
  • 手动商品广告create_manual_product_adsedit_manual_product_ads / edit_manual_product_ad_keywords
  • 效果报表get_all_cpc_ads_*_performanceget_product_campaign_*_performance
  • GMScreate_gms_product_campaign 等系列
  • 未纳入create_auto_product_adsedit_auto_product_ads(官方标注 coming offline soon)
  • 联盟营销 AMS(module=127)→ 非本 skill

可用脚本(Ads 模块 23 个 API)

分组脚本
账户/推荐get_total_balance.pyget_shop_toggle_info.pyget_recommended_keyword_list.pyget_recommended_item_list.py
CPC 效果get_all_cpc_ads_daily_performance.pyget_all_cpc_ads_hourly_performance.py
商品广告create_manual_product_ads.pyedit_manual_product_ads.pyget_product_level_campaign_id_list.py
GMScreate_gms_product_campaign.pyget_gms_campaign_performance.py
通用入口ads_api.py(JSON 含 api 字段)

完整列表见 references/api.md。共享:_shopee_ads_common.py_ads_endpoints.py_ads_api_runner.py

接口说明(按 API)

入参与响应细节放在 references/apis/,SKILL 只保留索引。

API说明文档
check_create_gms_product_campaign_eligibilityreferences/apis/check-create-gms-product-campaign-eligibility.md
create_gms_product_campaignreferences/apis/create-gms-product-campaign.md
create_manual_product_adsreferences/apis/create-manual-product-ads.md
edit_gms_item_product_campaignreferences/apis/edit-gms-item-product-campaign.md
edit_gms_product_campaignreferences/apis/edit-gms-product-campaign.md
edit_manual_product_ad_keywordsreferences/apis/edit-manual-product-ad-keywords.md
edit_manual_product_adsreferences/apis/edit-manual-product-ads.md
get_ads_facil_shop_ratereferences/apis/get-ads-facil-shop-rate.md
get_all_cpc_ads_daily_performancereferences/apis/get-all-cpc-ads-daily-performance.md
get_all_cpc_ads_hourly_performancereferences/apis/get-all-cpc-ads-hourly-performance.md
get_create_product_ad_budget_suggestionreferences/apis/get-create-product-ad-budget-suggestion.md
get_gms_campaign_performancereferences/apis/get-gms-campaign-performance.md
get_gms_item_performancereferences/apis/get-gms-item-performance.md
get_product_campaign_daily_performancereferences/apis/get-product-campaign-daily-performance.md
get_product_campaign_hourly_performancereferences/apis/get-product-campaign-hourly-performance.md
get_product_level_campaign_id_listreferences/apis/get-product-level-campaign-id-list.md
get_product_level_campaign_setting_inforeferences/apis/get-product-level-campaign-setting-info.md
get_product_recommended_roi_targetreferences/apis/get-product-recommended-roi-target.md
get_recommended_item_listreferences/apis/get-recommended-item-list.md
get_recommended_keyword_listreferences/apis/get-recommended-keyword-list.md
get_shop_toggle_inforeferences/apis/get-shop-toggle-info.md
get_total_balancereferences/apis/get-total-balance.md
list_gms_user_deleted_itemreferences/apis/list-gms-user-deleted-item.md

模块总览 / Feedback 见 references/api.md

Usage Scenarios

0. 确认 AD 授权(每次任务开头)

  1. auth:authorized_stores.py → 找目标 shopIdappType=ad
  2. 缺失 → auth:authorize_url.pyappType=ad,提示用户完成广告授权(URL 1 小时有效)
  3. 完成后再进入下列业务场景;收到 1004 时优先怀疑缺 AD 授权,不要用 ERP 记录硬调

1. 查余额与推荐

  1. get_total_balance.py
  2. get_recommended_item_list.py / get_recommended_keyword_list.py

2. 创建手动商品广告

  1. get_create_product_ad_budget_suggestion.py
  2. create_manual_product_ads.py 传完整 body
  3. get_product_campaign_daily_performance.py 查效果

调用原则

  • 先确认 appType=ad,再调脚本
  • 先看 developerProxy.httpStatus / 网关 errcode,再读 *Response 字段
  • GET:业务参数放 JSON 顶层
  • POST:复杂接口传 body;create/edit 建议传唯一 reference_id 防重复
  • 每个脚本 docstring 含 官方文档 URLmodule=117
  • 不要先 storeTokens 取 raw token,也不要在 proxy 里塞 accessToken

Not Applicable

  • 店铺授权 → linkfox-shopee-store-auth
  • 商品 listing → linkfox-shopee-store-product
  • 联盟营销 AMS(module=127)→ linkfox-shopee-store-ams
  • Amazon 广告 → linkfox-amazon-ads-* 系列

积分消耗规则

不消耗积分。

Feedback:

Auto-detect and report feedback via the Feedback API when any of the following apply:

  1. The functionality or purpose described in this skill does not match actual behavior
  2. The skill's results do not match the user's intent
  3. The user expresses dissatisfaction or praise about this skill
  4. Anything you believe could be improved

Call the feedback API as specified in references/api.md. Do not interrupt the user's flow.


For more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.

Related skills

Shopee(虾皮)店铺授权与管理技能,支持 ERP 与广告(AD)双应用分开授权。提供授权流程、已授权店铺查询以及授权状态读取。授权时可填写店铺名 shopName,region 支持 cn / global / br,appType 支持 erp / ad。当用户提到 Shopee 店铺授权、虾皮店铺绑定、ERP 授权、广告授权、appType、查询已授权 Shopee 店铺、Shopee seller authorization, bind Shopee shop, Shopee Ads authorization 时触发。即使未明确提及"Shopee"或"授权",只要涉及虾皮卖家账号绑定、ERP/广告应用授权或店铺列表查询,也应触发。

1 installs

Shopee(虾皮)联盟营销 AMS Affiliate Marketing Solutions(与 linkfox-shopee-store-auth 同系列),经 /shopee/developerProxy 转发 Shopee Open API AMS 模块全部 36 个接口:get_open_campaign_added_product、batch_add_products_to_open_campaign、create_new_targeted_campaign、get_affiliate_performance、get_shop_performance 等。当用户提到 Shopee 联盟营销、AMS、达人带货、affiliate、Open Campaign、Targeted Campaign、佣金率、达人推广、get_open_campaign_added_product 时触发。即使未明确提及"联盟",只要涉及已授权 Shopee 店铺的联盟推广或达人 campaign 管理,也应触发。

Shopee(虾皮)店铺信息与设置(与 linkfox-shopee-store-auth 同系列),经 /shopee/developerProxy 转发 Shopee Open API Shop 模块全部 9 个接口:get_shop_info、get_profile、update_profile、get_warehouse_detail、get_shop_notification、get_authorised_reseller_brand、get_br_shop_onboarding_info、get_shop_holiday_mode、set_shop_holiday_mode。当用户提到 Shopee 店铺信息、店铺资料、店铺名称、仓库地址、卖家通知、授权品牌、巴西 KYC、假期模式、holiday mode、get_shop_info 时触发。即使未明确提及"店铺信息",只要涉及已授权 Shopee 店铺的资料查询或店铺设置,也应触发。

Shopee(虾皮)店铺商品管理(与 linkfox-shopee-store-auth 同系列),经 /shopee/developerProxy 转发 Shopee Open API Product 模块全部 57 个接口:get_category、get_item_list、add_item、update_item、update_price、update_stock、boost_item、search_item 等。当用户提到 Shopee 商品、虾皮 listing、上架、下架、SKU、库存、价格、类目、属性、get_item_list、add_item、商品评论、boost 置顶 时触发。即使未明确提及"商品",只要涉及已授权 Shopee 店铺的商品查询、创建或更新,也应触发。

1 installs

Query Shopee store escrow, payout, wallet, and income-report data via 18 Payment module APIs.

135 installs

Shopee(虾皮)Push 推送机制(与 linkfox-shopee-store-auth 同系列),经 /shopee/developerProxy 转发 Shopee Open API Push 模块全部 4 个接口:set_app_push_config、get_app_push_config、get_lost_push_message、confirm_consumed_lost_push_message。当用户提到 Shopee Push、推送回调、Push Mechanism、set_app_push_config、丢失推送补推、webhook 配置 时触发。即使未明确提及"Push",只要涉及 Shopee 开放平台 Push 配置或补推消息管理,也应触发。

1 installs