开 Claude Max 一定会触发 KYC 吗?
Keine
·
2026-06-07
·
via Claude
 |
|
12
SingeeKing 6 天前
可以试试看自己的账号需不需要 KYC ``` fetch('/api/organizations') .then(r => r.json()) .then(o => fetch(`/api/organizations/${o[0].uuid}/kyc_status`)) .then(r => r.json()) .then(d => console.log( d.status, { not_required: '无需 KYC ,可直接升级', pending: '审核中', approved: '已通过,可升级', denied: '被拒' }[d.status] ) ) .catch(console.error); ``` (来源: https://linux.do/t/topic/2000318 )
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。