claude 想冲 max,但是又怕中间要是需要认证了直接无了
yujianfei
·
2026-04-18
·
via V2EX
 |
|
7
Grefer 3 小时 57 分钟前
在其他地方看到可以提前测试是否需要 KYC 在 claude 网页对话界面 F12 开发者模式运行下面代码: ```bash 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) ``` 不知道最终测试结果是否可信
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。