Pass headers to server actions
Unanswered
Forest bachac posted this in #help-forum
Forest bachacOP
I am passing headers to my website in every request. However, when server actions happen it is initiated by the site so the headers are not passed. Is there a way to include headers (or a specific header) when I call the server action/in that post request? It is needed for the middleware to pass
3 Replies
You should be able to directly access the headers in your server action.
On my phone so sorry for bad formatting but try
import { headers } from 'next/headers'
const headersList = await headers()
import { headers } from 'next/headers'
const headersList = await headers()
Inside your server action.