Noircat 在 关于提前确认开通claude pro是否触发kyc的方法 中发帖
今天鼓起勇气用24年老号开了一个pro,用了这个方案确认没有kyc以后,的确充值完以后没有出现kyc,或许可以作为一个参考?
claude页f12以下内容:
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);
焚诀来源:小...