Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If a proxy server requires authorization it returns an HTTP 407 ("Proxy Authentication Required") status code.

However, what happens if a proxy server is provided authorization which is invalid? Does it return another HTTP 407 or an HTTP 401 ("Unauthorized") or ...? (A use-case might be where System.Net.WebClient from .NET uses the "default proxy credentials" which happen to be invalid.)

I wouldn't mind some "steps to try it out myself", but my HTTP-foo is weak and I have no such proxy server myself (so it's more of a hypothetical question for me at this point). I have skimmed through RFC 2616 (including "14.34 Proxy-Authorization") but I was not able to glean anything -- very possibly an oversight on my part -- and references to the applicable sections describing the behavior are also very much appreciated.

share|improve this question

1 Answer

up vote 2 down vote accepted

Per RFC 2617:

If a proxy does not accept the credentials sent with a request, it SHOULD return a 407 (Proxy Authentication Required).

share|improve this answer
Awesome. +1 and a pink pony for you! – user166390 Apr 1 '11 at 3:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.