.NET Framework
HTTP 클라이언트
수색…
비고
현재 관련 HTTP / 1.1 RFC는 다음과 같습니다.
- 7230 : 메시지 구문 및 라우팅
- 7231 : 의미와 내용
- 7232 : 조건부 요청
- 7233 : 범위 요청
- 7234 : 캐싱
- 7235 : 인증
- 7239 : 전달 된 HTTP 확장
- 7240 : HTTP의 헤더 선호
또한 다음과 같은 정보 RFC가 있습니다.
그리고 실험적인 RFC :
관련 프로토콜 :
System.Net.HttpWebRequest를 사용하여 GET 응답을 문자열로 읽는 중
string requestUri = "http://www.example.com";
string responseData;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(parameters.Uri);
WebResponse response = request.GetResponse();
using (StreamReader responseReader = new StreamReader(response.GetResponseStream()))
{
responseData = responseReader.ReadToEnd();
}
System.Net.WebClient를 사용하여 GET 응답을 문자열로 읽음
string requestUri = "http://www.example.com";
string responseData;
using (var client = new WebClient())
{
responseData = client.DownloadString(requestUri);
}
System.Net.HttpClient를 사용하여 GET 응답을 문자열로 읽음
HttpClient
는 NuGet : Microsoft HTTP 클라이언트 라이브러리를 통해 사용할 수 있습니다.
string requestUri = "http://www.example.com";
string responseData;
using (var client = new HttpClient())
{
using(var response = client.GetAsync(requestUri).Result)
{
response.EnsureSuccessStatusCode();
responseData = response.Content.ReadAsStringAsync().Result;
}
}
System.Net.HttpWebRequest를 사용하여 문자열 페이로드로 POST 요청 보내기
string requestUri = "http://www.example.com";
string requestBodyString = "Request body string.";
string contentType = "text/plain";
string requestMethod = "POST";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(requestUri)
{
Method = requestMethod,
ContentType = contentType,
};
byte[] bytes = Encoding.UTF8.GetBytes(requestBodyString);
Stream stream = request.GetRequestStream();
stream.Write(bytes, 0, bytes.Length);
stream.Close();
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
System.Net.WebClient를 사용하여 문자열 페이로드로 POST 요청 보내기
string requestUri = "http://www.example.com";
string requestBodyString = "Request body string.";
string contentType = "text/plain";
string requestMethod = "POST";
byte[] responseBody;
byte[] requestBodyBytes = Encoding.UTF8.GetBytes(requestBodyString);
using (var client = new WebClient())
{
client.Headers[HttpRequestHeader.ContentType] = contentType;
responseBody = client.UploadData(requestUri, requestMethod, requestBodyBytes);
}
System.Net.HttpClient를 사용하여 문자열 페이로드로 POST 요청 보내기
HttpClient
는 NuGet : Microsoft HTTP 클라이언트 라이브러리를 통해 사용할 수 있습니다.
string requestUri = "http://www.example.com";
string requestBodyString = "Request body string.";
string contentType = "text/plain";
string requestMethod = "POST";
var request = new HttpRequestMessage
{
RequestUri = requestUri,
Method = requestMethod,
};
byte[] requestBodyBytes = Encoding.UTF8.GetBytes(requestBodyString);
request.Content = new ByteArrayContent(requestBodyBytes);
request.Content.Headers.ContentType = new MediaTypeHeaderValue(contentType);
HttpResponseMessage result = client.SendAsync(request).Result;
result.EnsureSuccessStatusCode();
System.Net.Http.HttpClient를 사용하는 기본 HTTP 다운로더
using System;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
class HttpGet
{
private static async Task DownloadAsync(string fromUrl, string toFile)
{
using (var fileStream = File.OpenWrite(toFile))
{
using (var httpClient = new HttpClient())
{
Console.WriteLine("Connecting...");
using (var networkStream = await httpClient.GetStreamAsync(fromUrl))
{
Console.WriteLine("Downloading...");
await networkStream.CopyToAsync(fileStream);
await fileStream.FlushAsync();
}
}
}
}
static void Main(string[] args)
{
try
{
Run(args).Wait();
}
catch (Exception ex)
{
if (ex is AggregateException)
ex = ((AggregateException)ex).Flatten().InnerExceptions.First();
Console.WriteLine("--- Error: " +
(ex.InnerException?.Message ?? ex.Message));
}
}
static async Task Run(string[] args)
{
if (args.Length < 2)
{
Console.WriteLine("Basic HTTP downloader");
Console.WriteLine();
Console.WriteLine("Usage: httpget <url>[<:port>] <file>");
return;
}
await DownloadAsync(fromUrl: args[0], toFile: args[1]);
Console.WriteLine("Done!");
}
}
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow