@ltxlongcpa批量导出认证文件 中发帖

没找到cpa批量导出的按钮,只能用codex胡一个脚本了 
(async () => {
  /* =========================
   * 可修改配置
   * ========================= */
  const CONCURRENCY = 5; // 并发数,默认 5
  const EXPORT_TYPE = 'codex'; // 仅导出 type=codex
  const PLAN_TYPE = ''; // '', 'all', 'free', 'team', 'plus', 'pro', 'enterprise', 'edu'
  const IS_OUTPUT_ONLY_ACTIVE_JSON = false; // true 时,仅导出 status=active
  const ZIP_NAME = 'cpa-codex-js...
 
 
Back to Top