import { HonoRequest } from "https://deno.land/x/hono@v4.3.6/request.ts";
.header()
can get the request header value.
Examples
Example 1
Example 1
app.get('/', (c) => {
const userAgent = c.req.header('User-Agent')
})
import { HonoRequest } from "https://deno.land/x/hono@v4.3.6/request.ts";
.header()
can get the request header value.
Example 1
app.get('/', (c) => {
const userAgent = c.req.header('User-Agent')
})