← Back to Skills Marketplace
linkfox-ai

Temu Order EU

by linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
55
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install linkfox-temu-order-eu
Description
Temu 欧洲站订单管理 API,经 LinkFox 网关转发 Partner EU 订单接口:订单列表/详情/收货地址/金额/合并发货/定制/SN鉴真上传(bg.order.*、temu.local.order.verification.upload)等。当用户提到 Temu EU 订单、Temu欧洲站订单、上...
README (SKILL.md)

Temu 欧洲站订单管理 API(Manage Order)

本 skill(linkfox-temu-order-eu)覆盖 Partner Platform for EU Order 菜单(menu_code=dbd3d395963a408984b8ae7dbc5f64f9)下 10 个订单 bg.order.* / temu.order.* / temu.local.order.* 接口(type 与 US 对齐,默认 site=eu)。美国站请用 linkfox-temu-order-us;全球站(非 US/EU)请用 linkfox-temu-order-global

详见 partner-eu-catalog.md

当前已接入 10 个接口;其余订单接口将按 Partner 文档逐条补充到 references/apis/eu_order_*.py

网关(本 skill 内置)

能力 方法 路径
订单 OpenAPI(eu_order_*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
发品、类目、V2 add linkfox-temu-add-product-us
价格/供货价、定价单 linkfox-temu-price-eu
取消订单 linkfox-temu-cancel-order-eu
退货与退款 linkfox-temu-returns-refunds-eu
履约/发货(购标、合作仓、自发货、跟踪) linkfox-temu-fulfillment-eu
网关与 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 order-shipping 订单/发货场景 token(见 access-token.md

鉴权

  1. LinkFoxLINKFOXAGENT_API_KEY → Header Authorization + Token
  2. TemuaccessTokenstoreKeystoreKey 时建议带 tokenPurpose=order-shipping

Scripts(按 type)

脚本 type 状态
eu_order_list_v2_get.py bg.order.list.v2.get 已接入
eu_order_detail_v2_get.py bg.order.detail.v2.get 已接入
eu_order_shippinginfo_v2_get.py bg.order.shippinginfo.v2.get 已接入
eu_order_decryptshippinginfo_get.py bg.order.decryptshippinginfo.get 已接入
eu_order_amount_query.py bg.order.amount.query 已接入
eu_order_amount_v2_query.py temu.order.amount.v2.query 已接入
eu_order_amount_v3_query.py temu.order.amount.v3.query 已接入
eu_order_combinedshipment_list_get.py bg.order.combinedshipment.list.get 已接入
eu_order_customization_get.py bg.order.customization.get 已接入
eu_order_verification_upload.py temu.local.order.verification.upload 已接入
temu_eu_proxy.py 任意 type 通用
temu_eu_file_download.py 加签文件下载 通用

接入新接口(约定)

你每提供一条 Partner 文档(type + 参数表 + 可选 sub_menu_code),将:

  1. 新增 references/apis/\x3Ctype-slug>.md(完整入参/出参层级)
  2. 新增 scripts/eu_order_\x3Cslug>.py(调用 _eu_order_script.run_cli
  3. 更新 partner-eu-catalog.mdapis/README.md 与本表

示例

export LINKFOXAGENT_API_KEY="\x3Ckey>"

# 订单列表 V2(待发货 parentOrderStatus=2)
python scripts/eu_order_list_v2_get.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "request": {
    "pageNumber": 1,
    "pageSize": 20,
    "parentOrderStatus": 2
  }
}'

# 按父订单号查询(最多 20 个)
python scripts/eu_order_list_v2_get.py '{
  "accessToken": "TOKEN",
  "request": {
    "parentOrderSnList": ["PO-123456789"]
  }
}'

# 订单详情 V2(须 parentOrderSn)
python scripts/eu_order_detail_v2_get.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "request": {
    "parentOrderSn": "PO-123456789"
  }
}'

# 收货地址 V2(传 parentOrderSn)
python scripts/eu_order_shippinginfo_v2_get.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "request": {
    "parentOrderSn": "PO-123456789"
  }
}'

# 敏感收货地址解密(传 parentOrderSn)
python scripts/eu_order_decryptshippinginfo_get.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "request": {
    "parentOrderSn": "PO-123456789"
  }
}'

# 订单金额/供货价(ERP 对账,传 parentOrderSn)
python scripts/eu_order_amount_query.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "request": {
    "parentOrderSn": "PO-123456789"
  }
}'

# 可合并发货订单组(request 可为空对象)
python scripts/eu_order_combinedshipment_list_get.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "request": {}
}'

# 定制商品内容(子订单号 orderSn,单次最多 10 个)
python scripts/eu_order_customization_get.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "request": {
    "orderSnList": ["SO-123456789", "SO-987654321"]
  }
}'

# 上传 SN/IMEI 或二手鉴真(orderList[].orderSn)
python scripts/eu_order_verification_upload.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "request": {
    "orderList": [
      {
        "orderSn": "SO-123456789",
        "verificationInfo": [
          {
            "serialNumber": "SN-001234567890",
            "imeiNumberList": ["352099001761481"]
          }
        ]
      }
    ]
  }
}'

Feedback: skillNamelinkfox-temu-order-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

Usage Guidance
Install only if you trust LinkFox and need Temu EU order operations. Treat this as a high-trust business-data skill: use least-privilege Temu tokens, avoid saving tokens locally unless necessary, protect or relocate the token store, do not use unmasked token output, and restrict use of decrypted shipping data, customization downloads, and SN/IMEI uploads to authorized fulfillment needs.
Capability Tags
requires-oauth-tokenrequires-sensitive-credentials
Capability Assessment
Purpose & Capability
The EU order scripts are purpose-aligned, but the package also includes generic Temu proxy and file-download scripts that accept arbitrary API type/site values, expanding authority beyond the advertised EU order-management scope.
Instruction Scope
The documentation discloses the gateway, tokens, sensitive shipping/decryption, customization files, and SN/IMEI workflows, but lacks clear guardrails for PII minimization, allowed API types, allowed hosts, and when decrypted address data should be retrieved.
Install Mechanism
No hidden installer, package dependency install, persistence hook, background worker, or destructive setup behavior was found; scripts are invoked manually.
Credentials
Network calls to LinkFox/Temu and use of order-shipping credentials are expected, but support for environment-overridden gateway URLs and multi-site generic proxying is broader than needed for an EU-only order skill.
Persistence & Privilege
The skill can save Temu access tokens in a local JSON file and can print stored tokens, including unmasked output, without encryption or strong handling guidance.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install linkfox-temu-order-eu
  3. After installation, invoke the skill by name or use /linkfox-temu-order-eu
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug linkfox-temu-order-eu
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Temu Order EU?

Temu 欧洲站订单管理 API,经 LinkFox 网关转发 Partner EU 订单接口:订单列表/详情/收货地址/金额/合并发货/定制/SN鉴真上传(bg.order.*、temu.local.order.verification.upload)等。当用户提到 Temu EU 订单、Temu欧洲站订单、上... It is an AI Agent Skill for Claude Code / OpenClaw, with 55 downloads so far.

How do I install Temu Order EU?

Run "/install linkfox-temu-order-eu" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Temu Order EU free?

Yes, Temu Order EU is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Temu Order EU support?

Temu Order EU is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Temu Order EU?

It is built and maintained by linkfox-ai (@linkfox-ai); the current version is v1.0.0.

💬 Comments