从 MicroProfile/Quarkus REST 客户端获取响应 header

Get response header from MicroProfile/Quarkus REST client

我正在调用一个端点,我需要的信息会在响应中返回 header (https://keycloak.discourse.group/t/rest-api-create-user-no-user-identifier-in-response/1964/4). How do I retrieve this information if I use Quarkus REST client (https://quarkus.io/guides/rest-client)?

我知道我可以使用 @ClientHeaderParam@HeaderParam 将 header 放入响应中。我想要的恰恰相反

你的 RestClient 方法应该 return JAX-RS Response object 而不是有效载荷,这样你就可以通过 [=11 从它访问 header =].