アプリケーションから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投稿メソッドに続いて:
public string Postsam([FromBody]object jsonData)
{
HttpRequestMessage re = new HttpRequestMessage();
var headers = re.Headers;
if (headers.Contains("Custom"))
{
string token = headers.GetValues("Custom").First();
}
}
ヘッダー値を取得する正しい方法は何ですか?
ありがとう。
Web API側では、新しいHttpRequestMessageを作成する代わりに、単にRequestオブジェクトを使用します
var re = Request;
var headers = re.Headers;
if (headers.Contains("Custom"))
{
string token = headers.GetValues("Custom").First();
}
return null;
出力-
API Controller ProductsController:ApiControllerがあるとします
何らかの値を返し、入力ヘッダー(たとえば、UserName&Password)を必要とするGet関数があります
[HttpGet]
public IHttpActionResult GetProduct(int id)
{
System.Net.Http.Headers.HttpRequestHeaders headers = this.Request.Headers;
string token = string.Empty;
string pwd = string.Empty;
if (headers.Contains("username"))
{
token = headers.GetValues("username").First();
}
if (headers.Contains("password"))
{
pwd = headers.GetValues("password").First();
}
//code to authenticate and return some thing
if (!Authenticated(token, pwd)
return Unauthorized();
var product = products.FirstOrDefault((p) => p.Id == id);
if (product == null)
{
return NotFound();
}
return Ok(product);
}
これで、JQueryを使用してページからリクエストを送信できます。
$.ajax({
url: 'api/products/10',
type: 'GET',
headers: { 'username': 'test','password':'123' },
success: function (data) {
alert(data);
},
failure: function (result) {
alert('Error: ' + result);
}
});
これが誰かを助けることを願っています...
TryGetValuesメソッドを使用する別の方法。
public string Postsam([FromBody]object jsonData)
{
IEnumerable<string> headerValues;
if (Request.Headers.TryGetValues("Custom", out headerValues))
{
string token = headerValues.First();
}
}
私の場合、次のコード行を試してください:
IEnumerable<string> values = new List<string>();
this.Request.Headers.TryGetValues("Authorization", out values);
誰かがモデルバインディングにASP.NET Coreを使用している場合、
https://docs.Microsoft.com/en-us/aspnet/core/mvc/models/model-binding
[FromHeader]属性を使用してヘッダーから値を取得するためのサポートが組み込まれています
public string Test([FromHeader]string Host, [FromHeader]string Content-Type )
{
return $"Host: {Host} Content-Type: {Content-Type}";
}
.NET Coreの場合:
string Token = Request.Headers["Custom"];
または
var re = Request;
var headers = re.Headers;
string token = string.Empty;
StringValues x = default(StringValues);
if (headers.ContainsKey("Custom"))
{
var m = headers.TryGetValue("Custom", out x);
}
現在のOperationContextからHttpRequestMessageを取得する必要があります。 OperationContextを使用すると、次のようにできます
OperationContext context = OperationContext.Current;
MessageProperties messageProperties = context.IncomingMessageProperties;
HttpRequestMessageProperty requestProperty = messageProperties[HttpRequestMessageProperty.Name] as HttpRequestMessageProperty;
string customHeaderValue = requestProperty.Headers["Custom"];
誰かが既に.Net Coreでこれを行う方法を指摘しているように、ヘッダーに「-」または.Netが許可しない他の文字が含まれている場合、次のようなことができます。
public string Test([FromHeader]string Host, [FromHeader(Name = "Content-Type")] string contentType)
{
}