3xx Redirection
This is an old HTTP idea that said, 'Use this proxy instead,' but modern systems should not rely on it.
Do not emit 305 in modern systems; keep it as historical reference material only.
GET https://api.example.test/resource305 Use Proxy
# Headers
Location: http://proxy.example.net:8080This reflects the historical meaning, but modern clients generally should not obey such instructions automatically.
This number exists in the HTTP list, but it does not mean anything you should use in a real app today.
Go to this other address for now, and send the exact same kind of request there.
You need to authenticate with the proxy server first before it will forward your request to the destination.