Next.js Discord

Discord Forum

User agent with POST request

Answered
Sun bear posted this in #help-forum
Open in Discord
Avatar
Sun bearOP
Hi

Is it possible to get user’s userAgent once he submit the form?
I am using formAction

Thank you
Answered by B33fb0n3
yes, you can access them through the headers
const headersList = await headers()
const userAgent = headersList.get('user-agent')
View full answer

3 Replies

Avatar
@Sun bear Hi Is it possible to get user’s userAgent once he submit the form? I am using formAction Thank you
Avatar
yes, you can access them through the headers
const headersList = await headers()
const userAgent = headersList.get('user-agent')
Answer
Avatar
Sun bearOP
@B33fb0n3 thanks for helping
Avatar
happy to help