WebApi에서 POST 메서드를 생성해야 응용 프로그램에서 WebApi 메서드로 데이터를 보낼 수 있습니다. 헤더 값을 가져올 수 없습니다.
여기에 애플리케이션에 헤더 값을 추가했습니다.
using (var client = new WebClient())
{
// Set the header so it knows we are sending JSON.
client.Headers[HttpRequestHeader.ContentType] = "application/json";
client.Headers.Add("Custom", "sample");
// Make the request
var response = client.UploadString(url, jsonObj);
}
WebApi 게시 방법 :
public string Postsam([FromBody]object jsonData)
{
HttpRequestMessage re = new HttpRequestMessage();
var headers = re.Headers;
if (headers.Contains("Custom"))
{
string token = headers.GetValues("Custom").First();
}
}
헤더 값을 가져 오는 올바른 방법은 무엇입니까?
감사.
string token = headers.GetValues("Custom").FirstOrDefault();
? 편집 : 원래 Q 스타일과 일치하는 것으로 나타났습니다.