C#调用HTTP接口

Posted 一直在身边

tags:

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

string url = "http://www.***.com?id=123&username=test&userpwd=*****";  
WebRequest wRequest = WebRequest.Create(url);  
wRequest.Method = "GET";  
wRequest.ContentType = "text/html;charset=UTF-8";  
WebResponse wResponse = wRequest.GetResponse();  
Stream stream = wResponse.GetResponseStream();  
StreamReader reader = new StreamReader(stream, System.Text.Encoding.Default);  
string str = reader.ReadToEnd();   //url返回的值  
reader.Close();  
wResponse.Close();  

 

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

ios调用c#后台接口报文格式

C#动态调用webService出现 基础连接已经关闭: 未能为 SSL/TLS 安全通道建立信任关系。

java调用c#的webservice,如何传递DateTime

短信平台接口调用方法参考

C#中请求HTTP接口api的方法

C# 调用soap接口时 No binding operation info while invoking unknown method with params unknown