Other
Interceptors
Check how to use custom interceptors for the fetch client used for Echo API calls.
Usage
Interceptors allow you to define custom functions that the Echo client will use during API calls. Here are some examples of what you can do with it:
- Add custom headers to all requests (e.g.
X-Localization
,Accept-Language
, etc) - Use telemetry or logging for requests/responses
- Modify the request payload before sending
If you are not familiar with ofetch interceptors,
check this documentation first.
Define interceptors
Since nuxt.config.ts
does not support complex TypeScript types like functions due to hydration,
you have to use app.config.ts
file to define your interceptors.
Here is an example of the configuration that writes a log entry for each request and response:
app/app.config.ts
import type { FetchContext } from 'ofetch'
import type { ConsolaInstance } from 'consola'
export default defineAppConfig({
echo: {
interceptors: {
onRequest: async (
app: NuxtApp,
ctx: FetchContext,
logger: ConsolaInstance,
) => {
ctx
.options
.headers
.set('X-Custom-Headers', 'custom-value')
logger.debug(`[onRequest] custom interceptor (${ctx.request})`)
},
onResponse: async (
app: NuxtApp,
ctx: FetchContext,
logger: ConsolaInstance,
) => {
logger.debug(`[onResponse] custom interceptor (${ctx.request})`)
},
},
},
})
Each interceptor receives 3 arguments:
app
- an instance of the currentNuxtApp
ctx
-FetchContext
instance for the current operation with access to request, response, and options (query, headers, etc)logger
- an instance of aConsola
logger used by the module (will be prefixed withnuxt-laravel-echo
)