Gemini 提交后转圈不停,或者返回一张完全空白的卡片——这种”无响应”几乎都是网络层 / 账号层问题,不是模型本身坏了。Gemini 的回复用 SSE 流式连接传输,任何一步阻塞(公司代理、广告扩展、Workspace 策略、地区限制)都会让前端卡死。
要快速定位,按”账号 → 地区 → 网络 → 浏览器”四层排查最有效。
症状
- 提交后旋转 spinner 一直转
- 回复卡片显示空白
- 同账号在手机能用,电脑网页不能
- 同电脑在 incognito 能用,主 profile 不能
常见原因
按出现频率:
1. 公司代理 / 防火墙拦了 Google AI endpoint(最常见)
公司 / 学校网络常拦 *.googleapis.com 或 SSE 长连接。Gemini 用 SSE 推送回复,被拦就空白。
如何判断:
- 用手机热点能正常用,公司 WiFi 不能 = 这条
- DevTools → Network → 看 SSE 连接是
(canceled)/(pending)
2. 浏览器扩展破坏 streaming
uBlock / Privacy Badger / 部分 antitracking 扩展会终止 SSE 连接。
如何判断:incognito(无扩展)能用,主 profile 不能。
3. Workspace 账号 AI 被禁
工作账号 IT 禁用了 Gemini,但消息可能是”功能不可用”或直接空白。
如何判断:
- 私人 Google 账号能用,工作账号不能
- 顶部黄条 “managed by your organization”
4. 地区限制
Gemini 按地区灰度,部分地区(俄罗斯 / 伊朗 / 朝鲜)不可用。
如何判断:VPN 切到 US 能用 = 地区限制。
5. 账号被标记为可疑
最近换设备 / IP 频繁,Google 临时锁定。
如何判断:accounts.google.com 有 “Security alert”。
6. 后端 outage(罕见)
Google 服务真的挂了。
如何判断:status.cloud.google.com 看 Vertex AI / Generative Language API 状态。
7. Prompt 触发 safety filter 静默失败
某些敏感 prompt 触发 filter 但前端不显示错误,看起来像无响应。
如何判断:换无害 prompt(“今天天气如何”)能用。
最短修复路径
按”30 秒能验证”从快到慢排:
Step 1:换网络(手机热点)
关掉公司 WiFi
开手机热点
连到热点
访问 gemini.google.com
重试
能用 = 公司网络阻塞。让 IT 给 Gemini 域名开白:
gemini.google.com*.googleapis.comaistudio.google.com*.googleusercontent.com
Step 2:换浏览器 / Incognito
打开 Chrome Incognito(无扩展)
访问 gemini.google.com 登账号
重试
能用 = 主 profile 扩展拦截。回主 profile 全部关扩展,逐个开找元凶。常见:
- uBlock Origin
- Privacy Badger
- AdGuard
- Ghostery
- DuckDuckGo Privacy Essentials
Step 3:换账号
gemini.google.com → 右上角头像 → 切到另一个 Google 账号(个人 / 学生 / 其他)
重试
个人能用工作不能 = Workspace 策略。让 IT 启用:
Admin Console → Apps → Additional Google services → Gemini app for Workspace → ON
Step 4:换地区
VPN 切 US/UK 试。能用 = 地区限制;要长期解决永久切。
Step 5:检查 Google 服务状态
访问 status.cloud.google.com
找 "Vertex AI" / "Generative Language API"
绿色 = 正常;红 / 黄 = 有问题,等修复
Step 6:换 prompt 测试 safety filter
让 Gemini 回 "今天天气如何"
能回 → 之前的 prompt 触发了 filter
不能回 → 不是 prompt 问题
Step 7:清浏览器 cookies + cache
Chrome 设置 → 隐私 → 清除浏览数据
范围:[*.]google.com
重启浏览器,重新登 Gemini
Step 8:API 用户改用 API
如果 Web UI 反复出问题,直接走 API:
from google import genai
client = genai.Client(api_key="YOUR_KEY")
response = client.models.generate_content(
model="gemini-2.5-pro",
contents="hello"
)
API 不走 Web UI 那些拦截链路。
哪些情况可能不是你操作错了
- Workspace 账号 AI 功能受策略管控,你自己开不了
- 地区限制需要 Google 灰度,无法绕开(VPN 是 workaround)
- 后端 outage 只能等
预防建议
- 知道哪个 Google 账号是”个人”哪个是”托管”,AI 工作用个人账号
- 收藏 status.cloud.google.com 快速排查
- 给 AI 工作建一个干净 Chrome profile,不装 ad blocker
- 公司网络下用 aistudio.google.com(部分情况比 gemini.google.com 稳)
- API 用户准备 fallback:Web UI 不稳时切 API