欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#通过GET/POST方式发送Http请求

程序员文章站 2022-06-22 16:20:11
目录get请求post请求介绍http请求的两种方式,get和post方式。并用c#语言实现,如何请求url并获取返回的数据两者的区别:参数get请求把提交的数据进行简单编码,同时将url的一部分发送...

介绍http请求的两种方式,get和post方式。并用c#语言实现,如何请求url并获取返回的数据

两者的区别:

参数

get请求把提交的数据进行简单编码,同时将url的一部分发送到服务器
比如url:http://127.0.0.1/login.jsp?name=zhangshi&age=30&submit=%cc%e+%bd%bb
所以get请求方式提交的数据存在一定的安全隐患,如果在使用对安全性要求教高的操作(比如用户登录,支付),应使用post方式。get请求是默认的http请求方法,我们一般通过get方法来获取表单数据

post请求会把请求的数据放置在http请求包的包体中。上面的item=bandsaw就是实际的传输数据。

传输数据的大小

get,特定的浏览器和服务器对url的长度有限制。因此,在使用get请求时,传输数据会受到url长度的限制。

post,由于不是url传值,理论上是不会受限制的,但是实际上各个服务器会规定对post提交数据大小进行限制,apache、iis都有各自的配置。

安全性

post的安全性比get的高。这里的安全是指真正的安全,而不同于上面get提到的安全方法中的安全,上面提到的安全仅仅是不修改服务器的数据。比如,在进行登录操作,通过get请求,用户名和密码都会暴露再url上,因为登录页面有可能被浏览器缓存以及其他人查看浏览器的历史记录的原因,此时的用户名和密码就很容易被他人拿到了。除此之外,get请求提交的数据还可能会造成cross-site request frogery攻击

http中的get,post,soap协议都是在http上运行的

get请求

请求类

///
/// get请求
/// 
/// 
/// 字符串
public static string gethttpresponse(string url, int timeout)
{
      httpwebrequest request = (httpwebrequest)webrequest.create(url);
      request.method = "get";
      request.contenttype = "text/html;charset=utf-8";
      request.useragent = null;
      request.timeout = timeout;

    httpwebresponse response = (httpwebresponse)request.getresponse();
    stream myresponsestream = response.getresponsestream();
    streamreader mystreamreader = new streamreader(myresponsestream, encoding.getencoding("utf-8"));
    string retstring = mystreamreader.readtoend();
    mystreamreader.close();
    myresponsestream.close();

    return retstring;
}

调用方法

string url="http://127.0.0.1/login.jsp?name=zhangshi&age=30&submit=%cc%e+%bd%bb";
string res = httphelper.gethttpresponse(url, 6000);
if (res != null)
{
   t mes = jsonhelper.deserializejsontoobject<t>(res)
}

post请求

        /// 创建post方式的http请求  
        public static httpwebresponse createposthttpresponse(string url, idictionary<string, string> parameters, int timeout, string useragent, cookiecollection cookies)
        {
            httpwebrequest request = null;
            //如果是发送https请求  
            if (url.startswith("https", stringcomparison.ordinalignorecase))
            {
                request = webrequest.create(url) as httpwebrequest;
            }
            else
            {
                request = webrequest.create(url) as httpwebrequest;
            }
            request.method = "post";
            request.contenttype = "application/x-www-form-urlencoded";

            //设置代理useragent和超时
            //request.useragent = useragent;
            //request.timeout = timeout; 

            if (cookies != null)
            {
                request.cookiecontainer = new cookiecontainer();
                request.cookiecontainer.add(cookies);
            }
            //发送post数据  
            if (!(parameters == null || parameters.count == 0))
            {
                stringbuilder buffer = new stringbuilder();
                int i = 0;
                foreach (string key in parameters.keys)
                {
                    if (i > 0)
                    {
                        buffer.appendformat("&{0}={1}", key, parameters[key]);
                    }
                    else
                    {
                        buffer.appendformat("{0}={1}", key, parameters[key]);
                        i++;
                    }
                }
                byte[] data = encoding.ascii.getbytes(buffer.tostring());
                using (stream stream = request.getrequeststream())
                {
                    stream.write(data, 0, data.length);
                }
            }
            string[] values = request.headers.getvalues("content-type");
            return request.getresponse() as httpwebresponse;
        }


    /// <summary>
    /// 获取请求的数据
    /// </summary>
    public static string getresponsestring(httpwebresponse webresponse)
    {
        using (stream s = webresponse.getresponsestream())
        {
            streamreader reader = new streamreader(s, encoding.utf8);
            return reader.readtoend();

        }
    }

调用方法

//参数p
idictionary<string, string> parameters = new dictionary<string, string>();
parameters.add("p", httputility.urlencode(p));
//http请求
system.net.httpwebresponse res = httphelper.createposthttpresponse(url, parameters, 3000, null, null);
if (res == null)
{
    response.redirect("requestfailed.aspx?result=出错了,可能是由于您的网络环境差、不稳定或安全软件禁止访问网络,您可在网络好时或关闭安全软件在重新访问网络。");
}
else
{
    //获取返回数据转为字符串
   string mes = httphelper.getresponsestring(res);
   t model = jsonhelper.deserializejsontoobject<t>(mes);
}

到此这篇关于c#通过get/post方式发送http请求的文章就介绍到这了,更多相关c# 发送http请求内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!