zoukankan      html  css  js  c++  java
  • 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();
    }

  • 相关阅读:
    c8051f交叉开关
    8052定时器2的用法
    poj1010
    poj2101
    poj1958
    poj3444
    poj2977
    DataTable 相关操作
    C#中string和StringBuilder的区别
    DataTable排序,检索,合并,筛选
  • 原文地址:https://www.cnblogs.com/hqbird/p/5207348.html
Copyright © 2011-2022 走看看