HttpWebRequest调用WebAPI

Posted 尘嚣之上

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HttpWebRequest调用WebAPI相关的知识,希望对你有一定的参考价值。

  public static string HttpPost(string url, string body)
        {
            //ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
            Encoding encoding = Encoding.UTF8;
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
            request.Method = "POST";
            request.Accept = "text/html, application/xhtml+xml, */*";
            request.ContentType = "application/json";
       
            byte[] buffer = encoding.GetBytes(body);
            request.ContentLength = buffer.Length;
            request.GetRequestStream().Write(buffer, 0, buffer.Length);
            HttpWebResponse response = (HttpWebResponse)request.GetResponse();
            using (StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8))
            {
                return reader.ReadToEnd();
            }

        }

        public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
        {
            return true; //总是接受  
        }

 

以上是关于HttpWebRequest调用WebAPI的主要内容,如果未能解决你的问题,请参考以下文章

HttpWebRequest请求Https协议的WebApi

C#使用WebRequest调用WebApi的方法

C# winform如何登陆web

HttpClient 与 HttpWebRequest

调用 HttpWebRequest.GetResponse() 时出现协议错误

WebClient、HttpWebRequest 和 HttpClient 的最大并发请求数