Can better-auth client be used from backend?
getSession gives null after google login on deployed app
Rate Limiting Does Not Work
API `verifyEmail` problem
SQL error when exchanging the token (Microsoft Auth + MSSQL + NextJS)
http://localhost:3000/api/auth/callback/microsoft
callback (with the code
parameter).
It looks like better-auth is trying to save some data received from Microsoft with an unexpected format...
Duplicate emails issue
user
table) or update their existing user to use the same email address that is already used for a different user.
Ideally, I would like to limit this to one user account per email address.
I've been trying to implement this on my database layer as well as in my trpc mutations, but I heard there might be a simpler way to do this purely in my Better Auth auth.ts
file....Using extra scopes in OAuth2 Flow
mapProfileToUser
and when you get the data then map that data to the user.
https://www.better-auth.com/docs/concepts/oauth#other-provider-configurations...Magic link with OTP fallback?
generateToken
implementation (e.g. to something that generates a 8-chars long alphanumeric string) in Magic Link's setting and then calling .verify
on the frontend page where user can enter the code. But I'm not sure if that's safe considering OTPs .verify
requires users email; I don't know why the approach is different there. Does that sound like a legit solution? I'd rather avoid building a custom endpoint....How to change error messages?
Get accessToken with LinkedIn OAuth
# SERVER_ERROR: Error: connect ECONNREFUSED 127.0.0.1:5432
listUsers from admin plugin with no session?
Session extension isn't happening with Chrome Extension SW + Fastify Setup
API Key Validation in Next.js middleware
auth.api.validateApiKey
function. Most of my configurations for the plugin are left as defaults. Kindly advise me on how I could get past this or what other approach I should consider. Thank you.What if I turn on autoSignIn and requireEmailVerification at the same time?
Social Auth throwing error - How to fix?

socket.io authentication
How do I access the type of the value returned by getInvitation?
authClient
to query information - for example getInvitation
How do I access the type of the value returned by getInvitation
? Specifically I am interested in the data
```ts...$Infer
with a type assertion
```ts
type Invitation = typeof authClient.$Infer.Invitation
...Question about how to apporoach data
Questions about signup/signout in Next