내 HttpClient PostAsync 두 번째 매개 변수에 대해 HttpContent를 어떻게 설정합니까?
public static async Task<string> GetData(string url, string data)
{
UriBuilder fullUri = new UriBuilder(url);
if (!string.IsNullOrEmpty(data))
fullUri.Query = data;
HttpClient client = new HttpClient();
HttpResponseMessage response = await client.PostAsync(new Uri(url), /*expects HttpContent*/);
response.Content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
response.EnsureSuccessStatusCode();
string responseBody = await response.Content.ReadAsStringAsync();
return responseBody;
}
이 PostAsync
요구 될 또 다른 매개 변수를 사용합니다 HttpContent
.
어떻게 설정 HttpContent
합니까? Windows Phone 8에서 작동하는 문서는 어디에도 없습니다.
내가하면 GetAsync
잘 작동합니다! 하지만 key = "bla", something = "yay"의 내용으로 POST 여야합니다.
//편집하다
답변 주셔서 감사합니다 ... 이것은 잘 작동하지만 여전히 몇 가지 확실하지 않습니다.
public static async Task<string> GetData(string url, string data)
{
data = "test=something";
HttpClient client = new HttpClient();
StringContent queryString = new StringContent(data);
HttpResponseMessage response = await client.PostAsync(new Uri(url), queryString );
//response.Content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
response.EnsureSuccessStatusCode();
string responseBody = await response.Content.ReadAsStringAsync();
return responseBody;
}
내가 가정 한 데이터 "test = something"은 api 측에서 포스트 데이터 "test"로 선택 될 것입니다. 또 다른 문제로, 게시물 데이터를 통해 전체 객체 / 배열을 게시해야 할 수도 있으므로 json이 최선의 방법이라고 가정합니다. 게시 데이터를 얻는 방법에 대한 의견이 있습니까?
아마도 다음과 같습니다.
class SomeSubData
{
public string line1 { get; set; }
public string line2 { get; set; }
}
class PostData
{
public string test { get; set; }
public SomeSubData lines { get; set; }
}
PostData data = new PostData {
test = "something",
lines = new SomeSubData {
line1 = "a line",
line2 = "a second line"
}
}
StringContent queryString = new StringContent(data); // But obviously that won't work
이 블로그 게시물 뿐만 아니라 HttpContent를 사용하는 방법을 찾을 수 없습니다에 대한 답변 중 일부에 답변되어 있습니다.
요약하면 인스턴스 HttpContent
가 추상 클래스 이기 때문에 인스턴스를 직접 설정할 수 없습니다 . 필요에 따라 파생 클래스 중 하나를 사용해야합니다. 대부분의 경우 StringContent
, 어떤 당신이 응답의 문자열 값, 인코딩, 생성자에서 용지 종류를 설정할 수 있습니다. 참조 : http://msdn.microsoft.com/en-us/library/system.net.http.stringcontent.aspx
Preston의 답변에 추가하기 HttpContent
위해 표준 라이브러리에서 사용할 수 있는 파생 클래스 의 전체 목록은 다음과 같습니다.
크레딧 : https://pfelix.wordpress.com/2012/01/16/the-new-system-net-http-classes-message-content/
또한 가정이 ObjectContent
있지만에서 찾을 수 없습니다 ASP.NET Core
.
물론 확장 기능 HttpContent
과 함께 모든 것을 건너 뛸 수 Microsoft.AspNet.WebApi.Client
있습니다 (현재 ASP.NET Core에서 작동하려면 가져 오기를 수행해야합니다 : https://github.com/aspnet/Home/issues/1558 ) 다음과 같은 작업을 수행 할 수 있습니다.
var response = await client.PostAsJsonAsync("AddNewArticle", new Post
{
Title = "New Article Title",
Body = "New Article Body"
});
'IT story' 카테고리의 다른 글
가장 널리 사용되는 C ++ 벡터 / 행렬 수학 / 선형 대수 라이브러리는 무엇이고 비용과 이점은 무엇입니까? (0) | 2020.04.15 |
---|---|
레포 틴이란 무엇이며 어떻게 작동합니까? (0) | 2020.04.15 |
안드로이드 빌드 스크립트 리포지토리 : jcenter vs mavencentral (0) | 2020.04.15 |
Visual Studio 2015 데이터베이스 프로젝트 디렉토리에는 확장명이 jfm 인 파일이 있습니다. (0) | 2020.04.15 |
_references.js는 무엇에 사용됩니까? (0) | 2020.04.15 |