Je dois créer une méthode POST dans WebApi pour pouvoir envoyer des données d'une application à la méthode WebApi. Je ne parviens pas à obtenir la valeur de l'en-tête.
Ici, j'ai ajouté des valeurs d'en-tête dans l'application:
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);
}
En suivant la méthode de publication 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();
}
}
Quelle est la bonne méthode pour obtenir les valeurs d'en-tête?
Merci.
Du côté de l'API Web, utilisez simplement l'objet Request au lieu de créer un nouveau HttpRequestMessage
var re = Request;
var headers = re.Headers;
if (headers.Contains("Custom"))
{
string token = headers.GetValues("Custom").First();
}
return null;
Sortie -
Supposons que nous ayons un API Controller ProductsController: ApiController
Il existe une fonction Get qui renvoie une valeur et attend un en-tête d'entrée (par exemple, Nom d'utilisateur et mot de passe)
[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);
}
Maintenant, nous pouvons envoyer la demande depuis la page en utilisant JQuery:
$.ajax({
url: 'api/products/10',
type: 'GET',
headers: { 'username': 'test','password':'123' },
success: function (data) {
alert(data);
},
failure: function (result) {
alert('Error: ' + result);
}
});
J'espère que ça aide quelqu'un ...
Une autre façon en utilisant une méthode TryGetValues.
public string Postsam([FromBody]object jsonData)
{
IEnumerable<string> headerValues;
if (Request.Headers.TryGetValues("Custom", out headerValues))
{
string token = headerValues.First();
}
}
essayez ces lignes de codes qui fonctionnent dans mon cas:
IEnumerable<string> values = new List<string>();
this.Request.Headers.TryGetValues("Authorization", out values);
Si quelqu'un utilise ASP.NET Core pour la liaison de modèle,
https://docs.Microsoft.com/en-us/aspnet/core/mvc/models/model-binding
Il existe un support intégré pour récupérer des valeurs de l'en-tête en utilisant l'attribut [FromHeader]
public string Test([FromHeader]string Host, [FromHeader]string Content-Type )
{
return $"Host: {Host} Content-Type: {Content-Type}";
}
Pour .NET Core:
string Token = Request.Headers["Custom"];
Ou
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);
}
Vous devez obtenir le HttpRequestMessage à partir du OperationContext actuel. En utilisant OperationContext, vous pouvez le faire comme ça
OperationContext context = OperationContext.Current;
MessageProperties messageProperties = context.IncomingMessageProperties;
HttpRequestMessageProperty requestProperty = messageProperties[HttpRequestMessageProperty.Name] as HttpRequestMessageProperty;
string customHeaderValue = requestProperty.Headers["Custom"];
Comme quelqu'un a déjà expliqué comment faire cela avec .Net Core, si votre en-tête contient un "-" ou un autre caractère interdit par .Net, vous pouvez faire quelque chose comme:
public string Test([FromHeader]string Host, [FromHeader(Name = "Content-Type")] string contentType)
{
}