mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
1.0 KiB
1.0 KiB
title | description | links | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
useRequestHeader | Use useRequestHeader to access a certain incoming request header. |
|
You can use the built-in useRequestHeader
composable to access any incoming request header within your pages, components, and plugins.
// Get the authorization request header
const authorization = useRequestHeader('authorization')
::callout
In the browser, useRequestHeader
will return undefined
.
::
Example
We can use useRequestHeader
to easily figure out if a user is authorized or not.
The example below reads the authorization
request header to find out if a person can access a restricted resource.
export default defineNuxtRouteMiddleware((to, from) => {
if (!useRequestHeader('authorization')) {
return navigateTo('/not-authorized')
}
})