_vti_bin/ListData.svc のような REST Api を使用して SharePoint 2010 リスト データを取得する Windows 8 アプリケーションのサンプルを作成しました。NetworkCredential を使用してリストにアクセスしています。FormsAuthentication を使用して同じ結果を得るにはどうすればよいですか? NetworkCredential のコード:
context = new CentralAdministrationDataContext(new Uri("http://<SharePoint_URL>/_vti_bin/ListData.svc"));
NetworkCredential credentials = new NetworkCredential();
context.UseDefaultCredentials = false;
context.Credentials = new NetworkCredential("UserName", "Password");