通过反代 Excel 解决 ChatGPT 降智问题
1. 核心原理
通过直接调用 OpenAI 官方 Excel 插件的底层 API 接口(basispoints),避开网页端严格的风控与检测,直接获取未降智的模型响应。
2. 前置准备
在浏览器登录 ChatGPT 网页版,通过开发者工具(F12 -> Application/Storage 或 Network)获取以下两个关键参数:
access_token:账号的 JWT Token。chatgpt_account_id:解析 JWT 中的https://api.openai.com/auth或从请求头提取出的 Account ID。
3. API 请求配置
-
请求方式:
POST -
接口地址:
https://bps.openai.com/basispoints/api/responses) -
Headers(请求头):
JSON
{ "Authorization": "Bearer <你的access_token>", "chatgpt-account-id": "<你的chatgpt_account_id>", "x-openai-account-id": "<你的chatgpt_account_id>", "x-basispoints-auth-mode": "chatgpt", "Content-Type": "application/json" }(注:格式需完全一致)
-
Body(请求体):传入标准的 ChatGPT 对话 Payload。
注意事项
- 该接口不支持深度思考模型的
effort: max挡位。