1
benson458 1 天前
突然需要认证可以退钱的把。
|
3
shoaly 1 天前
cc 的 100$ 是值得你花钱冒险去体验的.
如果用不完 20$额度档次的, 应该还是太轻量了 |
5
millermiu 1 天前
蹲个后续
|
6
teaguexiao 1 天前
Max 就冲,吃到限额默认就是降级到 pro 的速率,又不是封号,用完这周额度下周助跡就完全恢复。
|
7
Grefer 16 小时 9 分钟前
在其他地方看到可以提前测试是否需要 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) ``` 不知道最终测试结果是否可信 |