首页 > 其他 > 详细

form 认证 读取

时间:2016-02-22 16:44:54      阅读:164      评论:0      收藏:0      [点我收藏+]

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();
}

form 认证 读取

原文:http://www.cnblogs.com/hqbird/p/5207348.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!