3

以下の参照リンクに示すように、認証情報を渡すことでカスタム ロギングを実装したいと考えています。

以下のコードを使用していますが、自動的にログインするのではなく、ログイン ウィンドウをポップアップしてユーザー名とパスワードを入力するだけです。プログラムで資格情報を渡して自動的にログインしたい。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.SharePoint.Client;
using System.Net;
using MSDN.Samples.ClaimsAuth;

namespace Sp_Ctx
{
    class Program
    {
        [STAThread]
        static void Main(string[] args)
        {
            //if (args.Length < 1) { Console.WriteLine("SP_Ctx <url>"); return; }

            string targetSite = "https://mysite.sharepoint.com";//args[0];
            using (ClientContext ctx = ClaimClientContext.GetAuthenticatedContext(targetSite))
            {
                if (ctx != null)
                {
                    ctx.Credentials = new NetworkCredential("guest@mysite.com.au", "password", "mysite.sharepoint.com");
                    ctx.Load(ctx.Web); // Query for Web
                    ctx.ExecuteQuery(); // Execute
                    Console.WriteLine(ctx.Web.Title);
                }
            }
            Console.ReadLine();
        }
    }
}

アップデート:

MS 365 sharepoint 2013 サイトをホストしていますが、バージョン 2010 の認証メカニズムを使用したいと考えています。

4

2 に答える 2