mfragale
mfragale
BABetter Auth
Created by mfragale on 3/31/2025 in #help
Image not updating when using genericOAuth client.oauth2.link
Thanks for the reply! Yes, that would be great. Plus, it would be good to have this behavior specified in the docs, since I've been banging my head around trying to find out what could be wrong with my code. My workaround was to create an api end point that gets called after linking a user. await client.oauth2.link({ providerId: "planning-center", callbackURL: "/api/planning-center/avatar-sync", }); This endpoint then grabs the info from the oAuth provider and inserts it into the database.
3 replies
BABetter Auth
Created by mfragale on 3/18/2025 in #help
Session still active after calling authClient.revokeSession
@FalconiZzare I completely removed the session: {} object from my config file
7 replies
BABetter Auth
Created by mfragale on 3/18/2025 in #help
Session still active after calling authClient.revokeSession
Found the solution. I had this on my auth.ts file that was preventing the session to be immediately terminated: export const auth = betterAuth({ database: drizzleAdapter(db, { provider: "pg", // or "pg" or "mysql" }), session: { expiresIn: 60 * 60 * 24 * 7, // 7 days updateAge: 60 * 60 * 24 * 7, // 7 days (every 7 days the session expiration is updated) cookieCache: { enabled: true, maxAge: 5 * 60, // Cache duration in seconds }, },
7 replies