关于提前确认开通claude pro是否触发kyc的方法

Noircat 2026-09-24 01:53 1

今天鼓起勇气用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);



焚诀来源:小红书


最新回复 (1)
  • 印亭 坡 09-24 02:12
    1
    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: '[:white_check_mark:](https://cdn.ldstatic.com/images/emoji/twemoji/white_check_mark.png?v=15) 无需 KYC,可直接升级',
    pending: '[:hourglass_not_done:](https://cdn.ldstatic.com/images/emoji/twemoji/hourglass_not_done.png?v=15) 审核中',
    approved: '[:white_check_mark:](https://cdn.ldstatic.com/images/emoji/twemoji/white_check_mark.png?v=15) 已通过,可升级',
    denied: '[:cross_mark:](https://cdn.ldstatic.com/images/emoji/twemoji/cross_mark.png?v=15) 被拒'
    }[d.status]
    )
    )
    .catch(console.error);

    让 GPT 修复了一下

* 帖子来源Linux.do
返回