I have an asp.net core application and I want the request headers to be preserved in the response. I have 3 headers on the request in postman,
Authorization: "Bearer xxxxx"
azet-Accept: application/json"
azet-UseLatestversion: true
Here is what I have setup in configure method,
app.Use(
async (context, next) =>
{
context.Response.Headers.Add("X-Content-Type-Options", "nosniff");
context.Response.Headers.Add("Content-Security-Policy", "default-src 'self'");
context.Response.Headers.Add("Referrer-Policy", "no-referrer");
context.Response.Headers.Add(
"Feature-Policy",
"accelerometer 'none'; camera 'none'; geolocation 'none'; gyroscope 'none'; magnetometer 'none'; microphone 'none'; payment 'none'; usb 'none'");
context.Response.Headers.Add("X-Frame-Options", "DENY");
await next();
});
app.UseHttpsRedirection();
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
app.UseEndpoints(
endpoints =>
{
endpoints.MapControllers();
});
I want the headers like azet-UseLatestversion to be returned in the response
Any ideas?
Thanks
[HttpGet]
[Route("{apiPath}/{*requestUri}")]
public async Task<IActionResult> GetAsync(string apiPath, string requestUri = "")
{
var queryString = this.Request.QueryString.Value;
var headers = this.Request
.Headers
.ToDictionary(x => x.Key, y => y.Value.FirstOrDefault());
var response = await this.proxy.GetAsync(
apiPath, requestUri, queryString, headers, this.GetUserScopes());
this.logger.LogInformation(
$"GET statement received from {apiPath} {requestUri} {queryString} {DateTime.Now}.");
var test = response.Content;
if (response.HttpStatus != HttpStatusCode.OK)
{
this.logger.LogError($"{apiPath} {requestUri} {queryString} {response.HttpStatus}: {response.Content}");
return this.StatusCode((int)response.HttpStatus, ErrorResponse.GetDefaultMessageForStatusCode((int)response.HttpStatus));
}
return this.Content(response.Content?.ToString(), response.ContentType);
}
Here is a working demo:
Result: