# HH - Authentication<no value>

## .Auth / me context

<script>
  async function getUserInfo() {
    const response = await fetch('/.auth/me');
    const user = await response.json();
    const pre = document.querySelector('pre');
    pre.textContent = JSON.stringify(user, null, 2);
  }
  getUserInfo();
</script>

{{< callout context="note" title="Team lead" icon="outline/aerial-lift" >}}
<script>async function getUserInfo() {const response = await fetch('/.auth/me'); const user = await response.json(); const pre = document.querySelector('pre'); pre.textContent = JSON.stringify(user, null, 2);} getUserInfo(); </script>
{{< /callout >}}
