Can you explain in one sentence what is requested by the Request Header below? (So that I can find explanation of each term :Negotiate, Basic-realm, NTLM)
WWW-Authenticate Negotiate NTLM Basic realm="localhost"
Thanks
Can you explain in one sentence what is requested by the Request Header below? (So that I can find explanation of each term :Negotiate, Basic-realm, NTLM)
WWW-Authenticate Negotiate NTLM Basic realm="localhost"
Thanks
The header is saying that the server is expecting you to authenticate.
It will accept NTLM (Windows NT Lan Manager) or Basic authentication, and when you send it back, use the realm "localhost".
Your next request should include an HTTP Authentication: XXXXXX header with appropriate authentication for the request you're making.