Come faccio ad aggiungere un'intestazione personalizzata a una HttpClient
richiesta? Sto usando il PostAsJsonAsync
metodo per pubblicare il JSON. L'intestazione personalizzata che dovrei aggiungere è
"X-Version: 1"
Questo è quello che ho fatto finora:
using (var client = new HttpClient()) {
client.BaseAddress = new Uri("https://api.clickatell.com/");
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", "xxxxxxxxxxxxxxxxxxxx");
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
var response = client.PostAsJsonAsync("rest/message", svm).Result;
}