我正在尝试从C#窗体应用程序连接SharePoint。我可以连接到SharePoint,但在连接到SharePoint网站后如果我决定连接到其他网站并在clientcontext中更改网站地址。Executequery((会将错误显示为"用户名或密码不正确",尽管两者都是正确的。
确保使用目标站点初始化客户端上下文,不能跨站点使用。
using (var clientContext = new ClientContext("url1"))
{
clientContext.Credentials= new NetworkCredential("user", "password", "companydomain");