This server side code worked on `^1.1.18`, but not anymore on `^1.2.0`.
This is how my Hono routes,
I filled fake email and password.
Although I got this error log in terminal console:
I am getting in my browser.
I think there is a problem with
try catch
.26 Replies
This is in the network tab

I think I should get
500
...any suggestion?your using asResponse
I believe thats the issue since when asResponse is set you can simple return the res object since it will be a Response object
And when asResponse it would not want to reject the promise instead it returns a error Response
If I do that, it doesn't work
If I do that, I don't be able to get
res.headers
from itJust get the session token manually
delete as Response
use session.token from the result of the call
and set that as your cookie
How can I get?
.
I still don't get it
could you please give an example?
@lonelyplanet, hey sorry for late reply.
In the end, I just did like this:
It worked, I just don't know what is the data type of
res
json. So, I first console.log and there is code
and message
if response is not ok.
That message is what we need. So, just replied like that.Why are you passsing the headers into the signInEmail?
It contains the cookie info
you can check in the better-auth docs
const cookiez = res.headers.get('set-cookie');
TypeError: Cannot read properties of undefined (reading 'get')
oh nvm fixed itThe cookie name "better-auth.session_token=xLGnAfcMNb4tbx61F53Tid5kFVLoCRhl.X%2Bgfyz2%2BmFCb3u25oyolHqoaA9XmH5SdkvvhhYYlYgI%3D; Max-Age=604800; Path=/; HttpOnly; SameSite=Lax" will be invalid in SvelteKit 3.0 as it contains =. See RFC 2616 for more details https://datatracker.ietf.org/doc/html/rfc2616#section-2.2
Error: You must specify a
path
when setting, deleting or serializing cookiesIETF Datatracker
RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1
HTTP has been in use by the World-Wide Web global information initiative since 1990. This specification defines the protocol referred to as "HTTP/1.1", and is an update to RFC 2068. [STANDARDS-TRACK]
are you also using Hono?
No :(
which one?
Sveltekit
I am also using Hono integrated to SvelteKit
Whats that
btw, can you please provide me your post method codes?
Error: You must specify a
path
when setting, deleting or serializing cookiesmaybe you could get chatgpt.
yeah i think i almost have it now
the name of the cookie is auth when it should be better-auth.session_token
if i fix that i suppose it works
glad it worked
No it didnt yet
unfortunately
im slowly going insane