I cannot read cookies in getStaticPaths
and getStaticProps
, in SSR, I can request the cookie with context but even with packages such as js-cookie, cookie-cutter, cookies
, I am unable to read the cookies set, which makes it impossible to get the data.
This is the token I want to get, I removed httpOnly
for development.
export async function getStaticPaths(){
const data = await callApi("/jobs", "GET", token)
const paths = data.map(jobs => ({
params: {slug: jobs.slug}
}))
return{
paths,
fallback: true,
}
}
This is the getStaticPaths.