Flurl POST 请求缺少响应标头

问题描述 投票:0回答:0

我正在使用 Flurl 提交 POST 请求并期望在响应中收到“位置”标头。 然而,这种情况并非如此。在 Chrome 开发者工具中有 6 个可见的响应标头,但只有

content-type
IFlurlResponse.Headers
.

中可用

POST请求:

var response = await _client.Request(_endpoint).PostJsonAsync(entityForCreate, cancellationToken);

来自 Chrome 的响应标头:

access-control-allow-origin: *
access-control-expose-headers: X-Pagination
content-type: application/json; charset=utf-8
date: Thu, 16 Mar 2023 07:31:44 GMT
location: https://localhost:5011/api/customers/11
server: Kestrel

我做错了什么?

asp.net post flurl
© www.soinside.com 2019 - 2024. All rights reserved.