← 返回 Skills 市场
linkfox-ai

Temu Cancel Order US

作者 linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
35
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install linkfox-temu-cancel-order-us
功能描述
Temu 美国站取消订单 API(买家+卖家合一),经 LinkFox 网关转发 Partner US:买家售后取消列表/同意(bg.aftersales.cancel.*)、卖家申诉/缺货取消(temu.order.cancel.appeal/outofstock.*)等。当用户提到 Temu US 取消订单、...
使用说明 (SKILL.md)

Temu 美国站 — 取消订单(买家 + 卖家)

本 skill(linkfox-temu-cancel-order-us)覆盖 Partner Platform for US 取消订单相关接口:

  • 买家/消费者bg.aftersales.cancel.list.getbg.aftersales.cancel.agree
  • 店家/卖家temu.order.cancel.appeal.applytemu.order.cancel.appeal.result.gettemu.order.cancel.outofstock.applytemu.order.cancel.outofstock.result.get

详见 partner-us-catalog.md6 个接口)。

网关(本 skill 内置)

能力 方法 路径
取消单 OpenAPI(us_cancel_*us_seller_cancel_*temu_us_proxy POST https://tool-gateway.linkfox.com/temu/proxy
加签文件下载 POST https://tool-gateway.linkfox.com/temu/fileDownload

相关 skill

场景 skill
订单列表/详情/发货/地址/金额 linkfox-temu-order-us
欧洲站取消订单 linkfox-temu-cancel-order-eu
全球站(非 US/EU)取消订单 linkfox-temu-cancel-order-global
履约/发货 linkfox-temu-fulfillment-us
商品管理 linkfox-temu-manage-product-us
退货与退款 linkfox-temu-returns-refunds-us
网关与 Temu token 本 skill scripts/

API Usage

文档 内容
api.md 网关、鉴权、典型流程
partner-us-catalog.md 接口目录 + Partner URL + 脚本
apis/README.md 按接口分文件

默认参数

字段 默认 说明
site us Partner US
managementType semi-managed 半托管
tokenPurpose order-shipping 订单/取消场景 token

鉴权

  1. LinkFoxLINKFOXAGENT_API_KEY → Header Authorization + Token
  2. TemuaccessTokenstoreKey(建议 tokenPurpose=order-shipping

Scripts(按 type)

买家取消

脚本 type
us_cancel_aftersales_cancel_list_get.py bg.aftersales.cancel.list.get
us_cancel_aftersales_cancel_agree.py bg.aftersales.cancel.agree

卖家取消

脚本 type
us_seller_cancel_order_cancel_appeal_apply.py temu.order.cancel.appeal.apply
us_seller_cancel_order_cancel_appeal_result_get.py temu.order.cancel.appeal.result.get
us_seller_cancel_order_cancel_outofstock_apply.py temu.order.cancel.outofstock.apply
us_seller_cancel_order_cancel_outofstock_result_get.py temu.order.cancel.outofstock.result.get

通用

脚本 说明
temu_us_proxy.py 任意 type
temu_us_file_download.py 加签文件下载

接入新接口(约定)

  1. 新增 references/apis/\x3Ctype-slug>.md
  2. 新增 scripts/us_cancel_*us_seller_cancel_*(调用 _us_cancel_order_script.run_cli
  3. 更新 partner-us-catalog.mdapis/README.md

示例

export LINKFOXAGENT_API_KEY="\x3Ckey>"

# 买家取消 — 待处理列表
python scripts/us_cancel_aftersales_cancel_list_get.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "request": { "pageNo": 1, "pageSize": 20, "afterSalesStatusGroup": 8 }
}'

# 卖家 — 缺货取消申请
python scripts/us_seller_cancel_order_cancel_outofstock_apply.py '{
  "accessToken": "TOKEN",
  "tokenPurpose": "order-shipping",
  "request": {
    "parentOrderSn": "PO-123456789",
    "orderSnList": ["O-111111111"]
  }
}'

Feedback: skillNamelinkfox-temu-cancel-order-us

网关与授权脚本

脚本 说明
check_linkfox_token.py 校验 LinkFox Token
save_temu_access_token.py / list_temu_access_tokens.py / get_temu_access_token.py 本地 token
temu_token_guide.py Temu 授权指引

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

安全使用建议
Install only if you trust LinkFox with Temu order data and access tokens, and only use it with narrowly scoped tokens. Avoid saving tokens locally unless you can protect the file, do not pass real tokens in shell history or chat logs, and require a human confirmation before any cancellation or after-sales approval call. Consider removing or disabling the generic proxy, file-download, and raw token-listing scripts if you only need US order cancellation.
能力标签
requires-oauth-tokenrequires-sensitive-credentials
能力评估
Purpose & Capability
The core cancellation endpoints are purpose-aligned, but the package also exposes arbitrary Temu API proxy calls, signed file downloads, multi-site token utilities, and live order-cancellation actions beyond a tightly scoped US cancel-order skill.
Instruction Scope
The SKILL.md discloses the generic proxy and file-download scripts, but the skill name and primary description frame it as cancel-order-specific while allowing arbitrary API type forwarding and reusable token retrieval.
Install Mechanism
No automatic install-time execution, dependency installation, obfuscation, or persistence hooks were found; the scripts run when invoked by the user or agent.
Credentials
Network access to the LinkFox gateway and Temu credentials are expected for this integration, but command examples pass access tokens through CLI JSON and the docs do not give strong warnings about third-party transmission or credential exposure.
Persistence & Privilege
The skill can persist Temu access tokens in plaintext under ~/.linkfox/temu-access-tokens.json, retrieve and print raw tokens, and list them unmasked when requested, without restrictive file permissions or a secure secret store.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install linkfox-temu-cancel-order-us
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /linkfox-temu-cancel-order-us 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug linkfox-temu-cancel-order-us
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Temu Cancel Order US 是什么?

Temu 美国站取消订单 API(买家+卖家合一),经 LinkFox 网关转发 Partner US:买家售后取消列表/同意(bg.aftersales.cancel.*)、卖家申诉/缺货取消(temu.order.cancel.appeal/outofstock.*)等。当用户提到 Temu US 取消订单、... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 35 次。

如何安装 Temu Cancel Order US?

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

Temu Cancel Order US 是免费的吗?

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

Temu Cancel Order US 支持哪些平台?

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

谁开发了 Temu Cancel Order US?

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

💬 留言讨论