mfragale
BABetter Auth
•Created by mfragale on 3/31/2025 in #help
Image not updating when using genericOAuth client.oauth2.link
When I sign up a new user with
client.signIn.oauth2
the user info I get from my OAuth provider contains a image parameter that goes into my user image field in my db.
But when I try linking an existing user using client.oauth2.link
the user info I get from my OAuth provider still contains a image parameter but that info never gets updated in my user image field in my db.
https://www.better-auth.com/docs/plugins/generic-oauth#linking-oauth-accounts3 replies
BABetter Auth
•Created by mfragale on 3/18/2025 in #help
Session still active after calling authClient.revokeSession
I've got a button that does this:
onClick={async () => {
const res = await authClient.revokeSession({
token: session.token,
});
}}
On success, the database entry related to that session is removed, but the user in the browser still remains logged in and the session cookies still remain active.
Is there any other config or function I have to call in order to make this work?
7 replies