daveycodez
daveycodez
Explore posts from servers
BABetter Auth
Created by Clément on 4/2/2025 in #bug-reports
Issue: Session not retrieved on latest safari version
So my native apps are running from localhost
10 replies
BABetter Auth
Created by Clément on 4/2/2025 in #bug-reports
Issue: Session not retrieved on latest safari version
I use this for Capacitor
10 replies
BABetter Auth
Created by Clément on 4/2/2025 in #bug-reports
Issue: Session not retrieved on latest safari version
This is my advanced config
advanced: {
defaultCookieAttributes:
process.env.NODE_ENV === "production"
? {
sameSite: "none",
secure: true
}
: undefined
},
advanced: {
defaultCookieAttributes:
process.env.NODE_ENV === "production"
? {
sameSite: "none",
secure: true
}
: undefined
},
10 replies
BABetter Auth
Created by Clément on 4/2/2025 in #bug-reports
Issue: Session not retrieved on latest safari version
Is this happening on dev and prod? Or only on dev? There is an issue with secure cookies and Safari on dev (going from http to https)
10 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
Awesome
26 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
Try console.log on a page with beforeLoad and seeing if it shows up in Chrome console during client navigation
26 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
I usually use Next.js so I don't know for sure how TSS utilizes SSR
26 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
Try console logging in your beforeLoad and see if it shows up in browser or terminal
26 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
Yea I would make sure you know when it's running in server vs client
26 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
How can you detect if the loader is running server side or not
26 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
And use auth instead of authClient
26 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
const request = getWebRequest();
const session = request ? await auth.api.getSession({ headers: request.headers }) : null;
const request = getWebRequest();
const session = request ? await auth.api.getSession({ headers: request.headers }) : null;
26 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
import { getWebRequest } from "@tanstack/react-start/server";
const { headers } = getWebRequest()!;
const session = await auth.api.getSession({ headers });
const { headers } = getWebRequest()!;
const session = await auth.api.getSession({ headers });
26 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
If the issue is null session it's because you need to use cookies
26 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
I thought you meant how to use a root route to capture all your routes
26 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
Ohh you need to pass your headers to getSession
26 replies
BABetter Auth
Created by jason on 4/2/2025 in #help
Best way to protect routes in TanStack Start?
I think this is more a TanStack Start thing vs a Better Auth thing, since you'd need to do this regardless of the auth provider. I don't know all the details for how to do this. Try pinging Tanner on twitter?
26 replies
BABetter Auth
Created by Yahya on 3/28/2025 in #help
Tanstack Start Server functions cookie issue
My Next.js starter checks cookies in Middleware but the TanStack one just uses the client side protection atm
26 replies
BABetter Auth
Created by Yahya on 3/28/2025 in #help
Tanstack Start Server functions cookie issue
Better Auth UI does client side check on the settings page
26 replies
BABetter Auth
Created by Yahya on 3/28/2025 in #help
Tanstack Start Server functions cookie issue
I don't do server side checks on the starter
26 replies