form 认证 读取

class Program
{
public static CookieContainer cc { get; set; }
static void Main(string[] args)
{
string SharePointUrl = "http://pekwncowo01:88";
fbauth.Authentication auth = new fbauth.Authentication();
auth.Url = SharePointUrl + "/_vti_bin/authentication.asmx";
auth.CookieContainer = new System.Net.CookieContainer();
auth.AllowAutoRedirect = true;
fbauth.LoginResult lr = auth.Login("libx4", "Password.1");

if (lr.ErrorCode == fbauth.LoginErrorCode.NoError)
{
cc = auth.CookieContainer;
}


HttpWebRequest endpointRequest = (HttpWebRequest)HttpWebRequest.Create(SharePointUrl + "/_api/web/title");
endpointRequest.Method = "GET";
endpointRequest.Accept = "application/json;odata=verbose";
endpointRequest.CookieContainer = cc;

WebResponse res = endpointRequest.GetResponse();

StreamReader sr = new StreamReader(res.GetResponseStream());

string ddd = sr.ReadToEnd();

Console.WriteLine(ddd);
Console.ReadLine();
}

原文地址:https://www.cnblogs.com/hqbird/p/5207348.html