使用 HTTP Web 请求发送 HTTP 标头以进行 NTLM 身份验证
我想登录 Sharepoint 门户,该门户会显示登录对话框,但使用 NTLM 身份验证。如何修改 C# 中的 HTTP 标头以发出成功的登录请求?我假设我需要向门户登录部分中的页面发出 HTTPWebRequest 并在此旁边发布 HTTP 标头集合?
I want to login to a Sharepoint portal which brings up a login dialog but is using NTLM authentication. How can I modify the HTTP headers in C# to make a successful login request? I assume I would need to make a HTTPWebRequest to a page within the logged in section of the portal and post the HTTP headers collection alongside this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 WebRequest 类来完成此操作。
此代码将整个响应读取到名为
token
的变量中。You can do this using the WebRequest class.
This code reads the whole response into a variable called
token
.要使用 NTLM,请参阅 John 的 回答。如果您需要跨会话的标头,请查看 HttpWebRequest 对象上的 CookieContainer 属性。您需要保留对 CookieContainer 的引用,并将其附加到您发出的任何其他 HttpWebRequest。
To use NTLM see John's answer. If you need to have headers across sessions look at the CookieContainer property on the HttpWebRequest object. You will need to keep a reference to your CookieContainer and attach it to any other HttpWebRequests you make.
为了对 WebRequest 使用 NTLM 身份验证,信用信息应存储在
CredentialCache
中:来源:http://predicatet.blogspot.com/2007/01/httpwebrequest-networkcredential-with.html
In order to use NTLM authentication for WebRequest cred info should be stored in
CredentialCache
:Source: http://predicatet.blogspot.com/2007/01/httpwebrequest-networkcredential-with.html