C#模拟HTTP请求Post JSON
Posted 天下第一间
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#模拟HTTP请求Post JSON相关的知识,希望对你有一定的参考价值。
前言
因为接口是http的,我们站点是https的,不能https直接ajax请求http,所以需要在SharePoint中开发一个模拟请求Ajax的Service,分享一下。
var httpWebRequest = (HttpWebRequest)WebRequest.Create("http://url"); httpWebRequest.ContentType = "application/json"; httpWebRequest.Method = "POST"; using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream())) { string json = "{"user":"test"," + ""password":"bla"}"; streamWriter.Write(json); streamWriter.Flush(); streamWriter.Close(); } var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse(); using (var streamReader = new StreamReader(httpResponse.GetResponseStream())) { var result = streamReader.ReadToEnd(); }
以上是关于C#模拟HTTP请求Post JSON的主要内容,如果未能解决你的问题,请参考以下文章
使用 HttpClient 和 C# 在 post 请求中发送 json
php中 curl模拟post发送json并接收json(转)