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);
焚诀来源:小红书