stable本次发布有变化全部展示
来自 TikTok Shop 官方资料快照 ·
- 当前资料结构化阅读页
- 固定快照已留存,可追溯
- 官方原文可核对
资料正文
§1 Call supported developer APIs
The devapi command group exposes fixed OAuth-backed methods for supported Partner Center and Developer Center operations. It does not accept an arbitrary caller-provided path.
§2 Discover the installed method catalog
tts_open_toolkit auth login
tts_open_toolkit devapi list --json
Always use the installed CLI as the source of truth for method names and accepted inputs.
§3 Call a method
tts_open_toolkit devapi call partner-profile --json
tts_open_toolkit devapi call developer-app-detail --query app_key=<app_key> --json
tts_open_toolkit devapi call partner-service-detail --query service_id=<service_id> --query locale=en-US --json
§4 Published fixed methods
| Method | Purpose |
|---|---|
account-basic-info | Read basic developer-account information. |
account-certification-info | Read account certification information. |
developer-app-list | List developer Apps, optionally filtered by keyword. |
developer-app-detail | Read one App by required app_key. |
developer-app-exists | Check whether a developer App exists. |
document-api-meta | Read API-document metadata by source document ID. |
authorization-open-api-list | Read authorized OpenAPI items for a package and optional App. |
sandbox-shop-list | List sandbox shops. |
sandbox-account-list | List sandbox accounts with supported filters. |
partner-service-list | List partner services. |
partner-profile | Read the active partner profile. |
partner-service-detail | Read one partner service by service ID. |
open-app-list | List open Apps with pagination and filters. |
§5 Use JSON for automation
- Use
--jsonwhen an agent or script consumes the response. - Preserve safe error text, HTTP status, and request or log IDs for diagnosis.
- Do not parse human-readable output when JSON is available.
- Secret-bearing response fields are recursively removed. Public identifiers such as
app_keyremain available.
💡 Prefer fixed
devapi callmethods. Useauth requestonly for an explicit diagnostic against a known existing route, never to bypass an allowlist.
§6 Was this page helpful?
Was this page helpful?
Tell us what worked, what was unclear, or what should be added. TTS Open Toolkit Feedback Form
