401 doing listActiveSubscriptions on server side
Hey all im using svelte5 and better auth im trying to preload the subscription data in the
+page.server.ts
but im getting unauthorized when attempting to do so- when using the auth client it works fine?
17 Replies
Hi @sanser - what version of better-auth are you currently using?
Also, can you confirm that your request.headers above contains a valid better-auth session token?
hey @rtmorgan
yes it does contain a better auth session cookie BUT i have used the option to rename it:
using ->
cookie: 'dailydebrief.session_token=JDvM7r8lKh8WjJj5XD50x46eTaoczBua.redacted...'
Versions:
Can you test it with a new session / new session cookie as 1.2 changed the session token validation check on the HMAC signature.
If you are using a older, but still valid pre 1.2 cookie, it is not going to pass checks in v1.2 and higher getSession from what I can tell. This might be a long shot but worth testing if you recently upgraded.
i did recently upgrade but i recently changed laptops and db has been wiped + ofc new browser cookies
il give it a go though
does this seem like a bug?
Which authentication (email and password, social, etc) are you using prior to the route that uses that +page.server.ts?
Also, how are you navigating to that route - from a redirect or from a direct navigation link? thanks
so this login is from a magic link login, i am just accessing this route by a direct navigation currently
(im ofc using the magic link plugin?)
What does your hooks.server.ts look like? Are you using the svelteKitHandler?
hooks.server.ts
Can you share your route structure?
its pretty big :D

subscription is the route with the +page.server.ts where im attempting to get this information
Can you try it with headers set (similar to the getSession call):
const data = await auth.api.listActiveSubscriptions({
headers: request.headers
});
ha- this works :FacePalm:
thank you- i checked the typing for the params of the function and i swear it didnt expect the headers lol

but im so wrong- my bad it was late at night and my brain was frazzed... thanks again @rtmorgan
I am glad it's working now - I didn't see that at first either.