Unable to generate cookie in "after" hooks for sign-in because un-authorized

I am trying to generate a JWT on sign in (although ideally I would need to update the JWT whenever the session changes), and when I do...
if (ctx.path === '/sign-in/email') {
if (ctx.request) {
const { token: jwt } = await auth.api.getToken({
headers: ctx.request.headers
});
ctx.setCookie('jwt', jwt, {
path: '/',
expires: new Date(Date.now() + 30 * 24 * 60 * 60 * 1000),
secure: false
});
}
}
if (ctx.path === '/sign-in/email') {
if (ctx.request) {
const { token: jwt } = await auth.api.getToken({
headers: ctx.request.headers
});
ctx.setCookie('jwt', jwt, {
path: '/',
expires: new Date(Date.now() + 30 * 24 * 60 * 60 * 1000),
secure: false
});
}
}
I am getting "un-authorized" because I guess the session technically has not been created yet at this point? Is there a better solution to this? I feel like I might going about this the wrong way - I don't have much experience with JWTs
0 Replies
No replies yetBe the first to reply to this messageJoin

Did you find this page helpful?