アプリケーションからWebApiメソッドにデータを送信できるように、WebApiでPOSTメソッドを作成する必要があります。ヘッダー値を取得できません。
ここで、アプリケーションにヘッダー値を追加しました。
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 postメソッドに従う:
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();
か?編集:元のQsスタイルと一致していることに気づきました。