首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
Windows程序
> 详细
C#利用HttpWebRequest进行post请求的示例(HTTPS)
时间:
2016-08-11 15:30:47
阅读:
213
评论:
0
收藏:
0
[点我收藏+]
标签:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Security;
using System.Security.Cryptography.X509Certificates;
using System.Net;
using System.IO;
using System.IO.Compression;
using System.Text.RegularExpressions;
namespace HttpWebRequestDemo
{
class Program
{
private
static
readonly
string DefaultUserAgent =
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)";
private
static
bool CheckValidationResult(
object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
{
return
true;
//总是接受
}
public
static HttpWebResponse CreatePostHttpResponse(
string url, IDictionary<
string,
string> parameters,Encoding charset)
{
HttpWebRequest request =
null;
//HTTPSQ请求
ServicePointManager.ServerCertificateValidationCallback =
new RemoteCertificateValidationCallback(CheckValidationResult);
request = WebRequest.Create(url)
as HttpWebRequest;
request.ProtocolVersion = HttpVersion.Version10;
request.Method =
"POST";
request.ContentType =
"application/x-www-form-urlencoded";
request.UserAgent = DefaultUserAgent;
//如果需要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 = charset.GetBytes(buffer.ToString());
using (Stream stream = request.GetRequestStream())
{
stream.Write(data, 0, data.Length);
}
}
return request.GetResponse()
as HttpWebResponse;
}
static
void Main(
string[] args)
{
string url =
"https://192.168.1.101/httpOrg/create";
Encoding encoding = Encoding.GetEncoding(
"utf-8");
IDictionary<
string,
string> parameters =
new Dictionary<
string,
string>();
parameters.Add(
"authuser",
"*****");
parameters.Add(
"authpass",
"*****");
parameters.Add(
"orgkey",
"*****");
parameters.Add(
"orgname",
"*****");
HttpWebResponse response = Program.CreatePostHttpResponse(url,parameters,encoding);
//打印返回值
Stream stream = response.GetResponseStream();
//获取响应的字符串流
StreamReader sr =
new StreamReader(stream);
//创建一个stream读取流
string html = sr.ReadToEnd();
//从头读到尾,放到字符串html
Console.WriteLine(html);
}
}
}
C#利用HttpWebRequest进行post请求的示例(HTTPS)
标签:
原文地址:http://www.cnblogs.com/lcyuhe/p/5760954.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
动态 WebApi 引擎使用教程(3行代码完成动态 WebApi 构建)
2021-07-28
windows 查看文件的md5/sha1/sha256
2021-07-28
git windows下换行符问题 LF与CRLF转换
2021-07-27
FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。
2021-07-26
K8S--可视化界面Kubernetes Dashboard(API Server方式)
2021-07-26
Redis安装成windows服务
2021-07-26
c#32位支持大内存(>2gb)
2021-07-23
【c#】Dev BarStaticItem问题汇总
2021-07-23
Exception: URL fetch failure on https://s3.amazonaws.com/text-datasets/nietzsche.txt: None -- [WinError 10054] 远程主机强迫关闭了一个现有的连接。
2021-07-22
WinForm使用DataGridView实现类似Excel表格的查找替换
2021-07-22
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!