← 返回 Skills 市场
linkfox-ai

Temu Price EU

作者 linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
56
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install linkfox-temu-price-eu
功能描述
Temu 欧洲站商品价格管理 API,经 LinkFox 网关转发 Partner EU 价格接口:定价单列表查询(bg.local.goods.priceorder.query)、批量改 SKU 基础价(bg.local.goods.priceorder.change.sku.price)、推荐供货价/基础价估...
使用说明 (SKILL.md)

Temu 欧洲站价格 API(linkfox-temu-price-eu)

美国站请用 linkfox-temu-price-us;全球站(非 US/EU)请用 linkfox-temu-price-global

本 skill(linkfox-temu-price-eu)覆盖 Partner Platform for EU Price 菜单(menu_code=dfff38c23adf498d8a7cd55052bd3648)下与价格/供货价相关的 bg.local.* / temu.local.* 接口(type 与 US 版对齐,默认 site=eu)。

当前已接入 4 个接口;其余价格接口将按 Partner 文档逐条补充到 references/apis/eu_price_*.py

网关(本 skill 内置)

能力 方法 路径
价格 OpenAPI(eu_price_*temu_eu_proxy POST https://tool-gateway.linkfox.com/temu/proxy
加签文件下载 POST https://tool-gateway.linkfox.com/temu/fileDownload

相关 skill

场景 skill
商品列表/详情/编辑/库存/上下架 linkfox-temu-manage-product-eu
订单查询、发货、物流 linkfox-temu-order-us
取消订单(买家+卖家) linkfox-temu-cancel-order-us

| 履约/发货(含自发货) | linkfox-temu-fulfillment-eu | | 发品、类目、V2 add | linkfox-temu-add-product-us | | 半托管 temu.goods.price.list.getproductSkuIds) | linkfox-temu-add-product-usus_goods_price_list.py | | 网关与 Temu token | 本 skill scripts/ |

API Usage

文档 内容
api.md 网关、鉴权、错误码、典型流程
partner-eu-catalog.md 接口目录 + Partner URL + 脚本
apis/README.md 按接口分文件apis/\x3Ctype-slug>.md

默认参数

字段 默认 说明
site eu Partner EU
managementType semi-managed 半托管
tokenPurpose product-inventory 酷鸟卖家助手 token

鉴权

  1. LinkFoxLINKFOXAGENT_API_KEY → Header Authorization + Token
  2. TemuaccessTokenstoreKey

Scripts(按 type)

脚本 type 状态
eu_price_baseprice_recommend.py temu.local.goods.baseprice.recommend 已接入
eu_price_recommendedprice_query.py temu.local.goods.recommendedprice.query 已接入
eu_price_priceorder_query.py bg.local.goods.priceorder.query 已接入
eu_price_priceorder_change_sku_price.py bg.local.goods.priceorder.change.sku.price 已接入
temu_eu_proxy.py 任意 type 通用
temu_eu_file_download.py 加签文件下载 通用

新增接口后在此表与 partner-eu-catalog.md 同步登记。

示例

export LINKFOXAGENT_API_KEY="\x3Ckey>"

# 推荐基础价/供货价估算(须 catId + supplierPriceEstimateSkuQryList)
python scripts/eu_price_baseprice_recommend.py '{
  "accessToken": "TOKEN",
  "request": {
    "supplierPriceEstimateQry": {
      "goodsBasicInfo": { "catId": 12345 },
      "supplierPriceEstimateSkuQryList": [
        {
          "specIdList": [9001],
          "externPlatformPriceInfo": { "amount": "19.99", "currency": "EUR" }
        }
      ]
    }
  }
}'

# 推荐供货价查询(须 recommendedPriceType + goodsIdList,1~100 个 goodsId)
python scripts/eu_price_recommendedprice_query.py '{
  "accessToken": "TOKEN",
  "request": {
    "recommendedPriceType": 10,
    "goodsIdList": [123456789]
  }
}'

# 定价单列表查询(白名单;分页 page/size,可选筛选)
python scripts/eu_price_priceorder_query.py '{
  "accessToken": "TOKEN",
  "request": {
    "page": 1,
    "size": 20,
    "priceOrderType": 1,
    "orderBy": "order_create_time",
    "orderByType": 0
  }
}'

# 批量修改 SKU 基础价(白名单;须 goodsId + changeSkuPriceDTOList)
python scripts/eu_price_priceorder_change_sku_price.py '{
  "accessToken": "TOKEN",
  "request": {
    "goodsId": 123456,
    "changeSkuPriceDTOList": [
      {
        "skuChangePriceBaseDTOList": [
          {
            "skuId": 58224724203874,
            "newSupplierPrice": { "amount": "15.99", "currency": "EUR" }
          }
        ]
      }
    ]
  }
}'

Feedback: skillNamelinkfox-temu-price-eu

网关与授权脚本

脚本 说明
check_linkfox_token.py 校验 LinkFox 用户 Token
temu_token_guide.py Temu accessToken 后台授权步骤
save_temu_access_token.py 保存 accessToken 到本地
list_temu_access_tokens.py 列出已保存 token
get_temu_access_token.py 读取已保存 token
temu_proxy.py 通用网关转发(多 site)
temu_file_download.py 加签文件下载(多 site)

授权说明:references/access-token.md

安全使用建议
Install only if you trust the publisher and are comfortable giving the skill access to live Temu seller tokens and LinkFox gateway access. Before use, avoid storing long-lived tokens in plaintext, do not use the unmasked token listing or raw token output in shared logs, and require explicit human confirmation before any SKU price-change request. Prefer a version that removes the generic multi-site proxy/file-download utilities or strictly limits them to EU pricing endpoints.
能力标签
requires-oauth-tokenrequires-sensitive-credentials
能力评估
Purpose & Capability
The main EU price-management purpose is coherent, but the artifact also includes generic multi-site Temu proxy and signed file-download scripts that accept arbitrary API types, sites, and URLs, expanding beyond the declared EU pricing workflow.
Instruction Scope
The price-specific scripts are user-invoked, but there is no strict allowlist for the generic proxy path and no prominent confirmation, dry-run, or bulk-change safety guidance for live SKU price updates.
Install Mechanism
The artifact is a skill with markdown references and Python scripts; I found no auto-run install hook, package-install behavior, obfuscation, or hidden execution mechanism.
Credentials
Use of LinkFox and Temu credentials is expected for this integration, but raw token output, optional unmasked token listing, broad site support, and arbitrary gateway calls are disproportionate for a narrow EU pricing skill.
Persistence & Privilege
The skill persists Temu access tokens in a plaintext JSON file under ~/.linkfox and does not set restrictive permissions or provide adequate secret-handling warnings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install linkfox-temu-price-eu
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /linkfox-temu-price-eu 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug linkfox-temu-price-eu
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Temu Price EU 是什么?

Temu 欧洲站商品价格管理 API,经 LinkFox 网关转发 Partner EU 价格接口:定价单列表查询(bg.local.goods.priceorder.query)、批量改 SKU 基础价(bg.local.goods.priceorder.change.sku.price)、推荐供货价/基础价估... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 56 次。

如何安装 Temu Price EU?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install linkfox-temu-price-eu」即可一键安装,无需额外配置。

Temu Price EU 是免费的吗?

是的,Temu Price EU 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Temu Price EU 支持哪些平台?

Temu Price EU 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Temu Price EU?

由 linkfox-ai(@linkfox-ai)开发并维护,当前版本 v1.0.0。

💬 留言讨论