No cookies set when using the signInEmail method
Hello,
I have configured Better-Auth to connect with email/password.
The information passes correctly to connect the user, the associated data is returned.
However, no cookie is set in the browser, so I can't return anything with getSession...
auth.methods.ts
auth-client.ts
auth.ts
auth.schema.ts
auth.helper.ts
``


3 Replies
did u use "use server" in top the file? in auth.helper.ts?
Yes, first I didn't use it, then I added it.
Hey,
This was due to a double check of the schema of the values sent, I changed the structure of my form in the meantime and forgot to clean it up. My bad.
I'll leave the code just in case.
Before:
After:
However callbackUrl not working so I redirect with next/redirect
You are using the server API in the actions that why redirects are not working if you pass asResponse you could get the Web Standard Response and it will have the location set to the redirect, Cookies are working because i assume you have the nextCookies plugin if they aren't working then you should manually set the cookie by getting the token from the response this would be the value