Skip to lesson
Exit
Debugging & Troubleshooting Method1 / 3

1 min lesson

Network and HAR captures

Connect "The DevTools Network tab (or an exported HAR) shows the status codes that name the cause" to the decision you would make.

Step 1 of 3

Network and HAR capturesfor auth, model and connectivity failures

When the failure smells like the network - sign-in loops, model errors, dropped completions - capture the requests. The DevTools Network tab (or an exported HAR) shows the status codes that name the cause.

Learn more

Advanced table

Reference table

Status
401 / 403
Likely meaning
Auth token invalid or rejected
Where you'd look next
SSOSingle Sign-On. One company login (usually via SAML or OIDC) instead of a separate password per tool. Press Enter for the full definition. config, expired session, privacy policy
Status
407
Likely meaning
Proxy authentication required
Where you'd look next
Corporate proxy credentials and allowlist
Status
429
Likely meaning
Rate limited
Where you'd look next
Plan tier, usage caps, retry behavior
Status
Timeout / ECONNRESET
Likely meaning
Connection blocked or dropped
Where you'd look next
Firewall, VPN, blocked endpoint
Status
TLS / cert error
Likely meaning
Interception or clock skew
Where you'd look next
Corporate MITM proxy, system time

A status code turns "the internet is broken" into a named, routable cause.