javid
BABetter Auth
•Created by javid on 3/19/2025 in #help
Ip address and same browser verification between otp/magicLink trigger and verification.
I trying to check the IP address of magic link trigger and magicLink verification, both the ip address need same.
And also trying to implement one more case where both the magicLink trigger and MagicLink will be happening in the same browser, if magicLink verification happens at different browser, the i expect the verification not to happen.
Can you please help me in this?
3 replies
BABetter Auth
•Created by javid on 3/19/2025 in #bug-reports
if verification.disableCleanup set true, then the records were getting deleted in verification table
I have set the verification.disableCleanup as true, still the records in verification table are getting deleted
4 replies
BABetter Auth
•Created by javid on 3/19/2025 in #help
why the ipAddress config is used
at the betterAuth we have config for ipAddress
ipAddress: {
ipAddressHeaders: ["x-client-ip", "x-forwarded-for"],
disableIpTracking: false
},
what is the use of this can someone help?3 replies
BABetter Auth
•Created by javid on 3/11/2025 in #help
using redis as secondary storage for sessions
Hi in the better-auth example I saw
import { betterAuth } from "better-auth";
import { redisStorage } from "better-auth/storage";
export const auth = betterAuth({
secondaryStorage: redisStorage({
url: "redis://localhost:6379"
}),
})
but he implemenation of better-auth/storage is not present?
https://www.better-auth.com/docs/reference/options#secondarystorage
can anyone please advice me on this?
3 replies
BABetter Auth
•Created by javid on 3/9/2025 in #help
how to configure postgres schema
I am using postgres db for better-auth, my tables were present in a user schema not in public schema
how to make sql queries to get executed in the proper schema, by default all the sql queries are getting executed in public schema of postgres
const db = new Kysely({
dialect: new PostgresJSDialect({
postgres: postgresConn,
}),
});
const auth = betterAuth({
database: {
dialect: new PostgresJSDialect({ postgres: postgresConn }),
type: 'postgres', // ✅ Explicitly specify type
},})
using this setup for better-auth and postgress integration
the queries are getting executed as
"SELECT * from account"
but the queries need to executed as
"SELECT * from schema_name.account"
how to achive this6 replies
BABetter Auth
•Created by javid on 3/9/2025 in #help
How the expired sessions were deleted from DB
Just want to know how the expired session were deleted from DB, do better-auth handled this or we have to manage manually?
2 replies
BABetter Auth
•Created by javid on 3/9/2025 in #help
Implement signUp with OTP verification
How to implement sign Up with OTP verification
I could see as of now the email verification is done via magic link
i want to through OTP.
2 replies
BABetter Auth
•Created by javid on 3/9/2025 in #help
account and session table expiry column explanation
I could able to see two expiry columns in account table and session table
1. account table:
"access_token_expires_at" TIMESTAMP,
"refresh_token_expires_at" TIMESTAMP,
2. session table
expires_at" TIMESTAMP NOT NULL,
what is the difference between account table and session table expiry columns
2 replies
BABetter Auth
•Created by javid on 3/8/2025 in #help
signIn and signUp with password using email and OTP
I want to setup signIn and signUp without using password
the flow should be like
SignUp:
step 1: user will enter name and email
step 2: user will receive OTP in email and do the verification
SignIn:
step 1: user will enter email
step 2: user will receive OTP in email and do the verification
how to achive this please guide me
4 replies
BABetter Auth
•Created by javid on 3/4/2025 in #help
Is the hooks executes in transactions
If I add a after-hook that need to be executed if a user sign ups, if that hooks execution got failed will the entire user creation will be rolled-out or partial execution of user creation will occur
1 replies
BABetter Auth
•Created by javid on 3/4/2025 in #help
How to add a after hook for User creation
If a user is created, I need to configure a after-hook after
successful user creation, how to do this?
4 replies
BABetter Auth
•Created by javid on 3/3/2025 in #help
Using postgres Instead of pg in Better Auth – Is It Possible?
I see that better-auth uses the pg npm library for database connections. However, I want to use the postgres npm package instead.
Is it possible to configure Better Auth to work with the postgres library instead of pg? If so, how can I do it?
Thanks in advance!
5 replies