问题描述
我正在尝试通过编程方式使用域名连接外联网网站,但获取404未经授权的错误
I am trying to connect the extranet site using domain name through programmatically but getting 404 unauthorized error
ClientContext clientContext = new ClientContext(path);
          clientContext.Credentials = new NetworkCredential(userName,Password,domain);
ClientContext clientContext = new ClientContext(path);
clientContext.Credentials = new NetworkCredential(userName, Password, domain);
这是我使用的代码
推荐答案
您的目标服务器版本是什么? (SharePoint 2013/2016 /在线)
服务器是否使用Windows身份验证(或FBA / ADFS)?
如果目标服务器使用ADFS身份验证,则可以使用pnp库进行身份验证。
https://github.com/SharePoint/PnP-Sites-Core/blob/master/ Core / SAML%20authentication.md
您可以尝试CredentialCache,它遇到类似的错误低于线程。
最好的问候,
Lee
这篇关于连接extra-net网站时出现404错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!