繁体   English   中英

使用CSOM连接到SharePoint网站

[英]Connecting with sharepoint site using CSOM

我的代码如下

  try
    {

        string strUserName="abc";
        string strPassword="123";
        ClientContext context = new ClientContext(siteurl);
        var credentials = new NetworkCredential(strUserName, strPassword,"Ext");


        context.Credentials = credentials;
        // The SharePoint web at the URL.
        Web web = context.Web;

        // We want to retrieve the web's properties.
        context.Load(web);

        // Execute the query to the server.
        context.ExecuteQuery();

        // Now, the web's properties are available and we could display 
        // web properties, such as title. 
        System.Console.WriteLine("Web Title");
        System.Console.WriteLine(web.Title);
    }
    catch (Exception ex)
    {
    }

它给出错误“无法连接远程服务器”

首先,请确保正确传递以下实体:

  • SITEURL
  • strUserName中
  • strPassword
  • “外部”

如果您尝试连接到SharePoint Online 2013,则必须将“ NetworkCredential”替换为“ SharePointOnlineCredentials ”。 这是它的代码片段:

    string strUserName="abc";
    string strPassword="123";
    SecureString ssPwd = new SecureString();
    strPassword.ToList().ForEach(ssPwd.AppendChar);
    ClientContext context = new ClientContext(siteurl);
    SharePointOnlineCredentials credentials = new SharePointOnlineCredentials(strUserName, ssPwd);

    context.Credentials = credentials;
    // The SharePoint web at the URL.
    Web web = context.Web;

    // We want to retrieve the web's properties.
    context.Load(web);

    // Execute the query to the server.
    context.ExecuteQuery();

接受自签名证书:

ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM