马里奥Zz (@MarioTzz)ios订阅获取claude 赠送额度 (不绑卡) 中发帖

直接进入网页版claude,在setting里打开usage,然后打开devtools,把下面代码复制进console就行 
const orgId = document.cookie.match(/(?:^|;\s*)lastActiveOrg=([^;]+)/)?.[1];

if (orgId) {
fetch(`https://claude.ai/api/organizations/${orgId}/overage_credit_grant`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({})
})
.then(res => res.json())
.then(console.log...