asc-id-resolver

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

ASC ID Resolver

ASC ID解析工具

Use this skill to map names to IDs needed by other commands.
使用此技能将名称映射为其他命令所需的ID。

App ID

应用ID

  • By bundle ID or name:
    • asc apps list --bundle-id "com.example.app"
    • asc apps list --name "My App"
  • Fetch everything:
    • asc apps --paginate
  • Set default:
    • ASC_APP_ID=...
  • 通过Bundle ID或名称获取:
    • asc apps list --bundle-id "com.example.app"
    • asc apps list --name "My App"
  • 获取全部应用:
    • asc apps --paginate
  • 设置默认应用ID:
    • ASC_APP_ID=...

Build ID

构建版本ID

  • Latest build:
    • asc builds latest --app "APP_ID" --version "1.2.3" --platform IOS
  • Recent builds:
    • asc builds list --app "APP_ID" --sort -uploadedDate --limit 5
  • 获取最新构建版本:
    • asc builds latest --app "APP_ID" --version "1.2.3" --platform IOS
  • 获取近期构建版本:
    • asc builds list --app "APP_ID" --sort -uploadedDate --limit 5

Version ID

版本ID

  • asc versions list --app "APP_ID" --paginate
  • asc versions list --app "APP_ID" --paginate

TestFlight IDs

TestFlight ID

  • Groups:
    • asc beta-groups list --app "APP_ID" --paginate
  • Testers:
    • asc beta-testers list --app "APP_ID" --paginate
  • 测试组:
    • asc beta-groups list --app "APP_ID" --paginate
  • 测试人员:
    • asc beta-testers list --app "APP_ID" --paginate

Pre-release version IDs

预发布版本ID

  • asc pre-release-versions list --app "APP_ID" --platform IOS --paginate
  • asc pre-release-versions list --app "APP_ID" --platform IOS --paginate

Review submission IDs

审核提交ID

  • asc review submissions-list --app "APP_ID" --paginate
  • asc review submissions-list --app "APP_ID" --paginate

Output tips

输出提示

  • JSON is default; use
    --pretty
    for debug.
  • For human viewing, use
    --output table
    or
    --output markdown
    .
  • 默认输出为JSON格式;使用
    --pretty
    参数便于调试。
  • 若要便于人工查看,可使用
    --output table
    --output markdown
    参数。

Guardrails

注意事项

  • Prefer
    --paginate
    on list commands to avoid missing IDs.
  • Use
    --sort
    where available to make results deterministic.
  • 在列表命令中优先使用
    --paginate
    参数,避免遗漏ID。
  • 在支持的情况下使用
    --sort
    参数,确保结果的确定性。