如何从 Cookie 对象获取 ICredentials
我可以从不使用 AD 进行身份验证的 SharePoint 网站获取身份验证 cookie。但是,我想使用 PUT 方法上传文件,这要求我提供 ICredentials 对象。如何从我拥有的 Cookie 对象中获取 ICredentials 实例?
I can get an Authentication cookie from a SharePoint site that is not using AD for authentication. However, I want to use the PUT methos to upload a file and this asks me for a ICredentials object. How can get an ICredentials instance out of the Cookie object I have?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您获得了身份验证 cookie,则在 WebRequest 对象上添加 cookie 应该可以工作。我不认为 ICredentials 对象可以从 cookie 创建。
If you got the authentication cookie then adding the cookie on your WebRequest objects should work. I don't think that ICredentials object can be created from the cookie.