以下の参照リンクに示すように、認証情報を渡すことでカスタム ロギングを実装したいと考えています。
- http://blogs.msdn.com/b/cjohnson/archive/2011/05/03/authentication-with-sharepoint-online-and-the-client-side-object-model.aspx
- http://msdn.microsoft.com/en-us/library/hh147177(v=office.14).aspx
以下のコードを使用していますが、自動的にログインするのではなく、ログイン ウィンドウをポップアップしてユーザー名とパスワードを入力するだけです。プログラムで資格情報を渡して自動的にログインしたい。
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 の認証メカニズムを使用したいと考えています。