0

我有一个使用 React on GAE 制作的应用程序,受 IAP 保护。
我想在应用页面上显示登录用户的电子邮件地址。
根据文档,有一个名为“x-goog-iap-jwt-assertion”的标头,其中包括请求标头中识别的用户信息。
我用 Express 成功检索了 Nodejs 中的请求标头,但无法在 React 中检索此请求标头数据。

有没有办法在 React 中检索此请求标头数据?


更新

我努力了axios.get("/").then(res => console.log(res.headers));

它返回

{
  "alt-svc": "h3-27=\":443\"; ma=2592000, h3-25=\":443\"; ma=2592000, h3-T050=\":443\"; ma=2592000, h3-Q050=\":443\"; ma=2592000, h3-Q049=\":443\"; ma=2592000, h3-Q048=\":443\"; ma=2592000, h3-Q046=\":443\"; ma=2592000, h3-Q043=\":443\"; ma=2592000",
  "cache-control": "no-cache, must-revalidate",
  "content-encoding": "gzip",
  "content-type": "text/html",
  "date": "Mon, 08 Jun 2020 08:02:21 GMT",
  "etag": "\"AdbtXg\"",
  "expires": "Fri, 01 Jan 1990 00:00:00 GMT",
  "pragma": "no-cache",
  "server": "Google Frontend",
  "x-cloud-trace-context": "c6266644decdc531641c3f57a99ef645",
  "x-firefox-spdy": "h2"
}
4

0 回答 0