使用Gmail开通ChatGPT K12-Team账号Plus会员
后面可能很快封锁注册渠道,如果看到文章,就马上注册一个吧。
请注意不要使用大号注册,防止封号影响。
OpenAI 已限制通过 Web session 转换导入来跳过 Codex OAuth add phone / 手机绑定验证。所以这个注册的K12还是需要绑定中国外的手机号才能用CODEX。如果有新方式可以绕过的话,我会发布新文章。
ChatGPT K12-Team账号绕过手机验证登录并使用CodeX
一个Gmail可以开通无数个K12,通过使用gmail的特殊符号加字符的方式。
比如邮箱是google@gmail.com,注册时可以用google+123456@gmail.com、google+12221@gmail.com等不同地址无限注册!gmail邮箱地址+号后面的字符会被谷歌忽略是一个邮箱。
准备工作
Gmail邮箱
ChatGPT 官网:https://chatgpt.com
注册脚本
如果下面脚本里的默认空间失效,给ID换成下面几个测试看看。
8064da55-e484-4ba0-a0bc-db05ee84462b
4fdf7f85-38d1-4eea-aeb9-f50939ffb9d8
e1fbfed6-86a4-49b0-868d-17c396358d57
替换到https://chatgpt.com/backend-api/accounts/后面。
脚本内容:
fetch("https://chatgpt.com/api/auth/session", {
method: "GET",
credentials: "include"
})
.then(response => response.json())
.then(sessionData => {
const accessToken = sessionData.accessToken;
if (!accessToken) {
throw new Error("未能获取到 accessToken");
}
console.log("获取到 accessToken,正在发送邀请请求...");
return fetch("https://chatgpt.com/backend-api/accounts/5e4c9b31-1b4e-4887-839b-607597928d7c/invites/request", {
method: "POST",
headers: {
"accept": "*/*",
"accept-language": "en-US,en;q=0.9",
"authorization": `Bearer ${accessToken}`, // ← 这里使用了正确的反引号
"cache-control": "no-cache",
"oai-language": "en-US",
"pragma": "no-cache",
"sec-ch-ua-arch": "\"x86\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"13.5.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin"
},
referrer: "https://chatgpt.com/k12-verification",
referrerPolicy: "strict-origin-when-cross-origin",
body: null,
mode: "cors",
credentials: "include"
});
})
.then(response => response.json())
.then(result => {
console.log("邀请请求成功:", result);
})
.catch(error => {
console.error("请求失败:", error);
});注册方式
先使用GMAIL邮箱正常打开https://chatgpt.com注册一个账号。
注册完成后浏览器F12打开控制台,在控制台粘贴注册脚本回车。
如果显示邀请成功就代表已经成功加入了K12。
过程截图
浏览器脚本运行截图
K12邮箱截图
加入成功左下角可以切换账户到K12-team
可使用最新5.5模型
Discussion
New Comments
暂无评论。 成为第一个!