How do you let the user choose which Google account to use when using social sign-in?
How do I implement authentication for tenant's clients with better-auth ?
Oauth in GoogleAddon
Update email of existing user entry that was created initially by verifyPhoneNumber API

App infinitely reloading and not sure why.
const isAuthed = await auth.api.getSession({
headers: context.request.headers,
});
const isAuthed = await auth.api.getSession({
headers: context.request.headers,
});
/api/auth/*
to get the session however the middleware will run on this meaning we will end up in an infinite loop due to it calling itself over and over again, not a problem on certain pages but possibly on others. my reworked middleware.ts
```ts
import { auth } from "@/lib/server/auth";
import { defineMiddleware } from "astro:middleware";
...Client-side user impersonation in Better-Auth with OpenAPI-TS: Why does it fail?
Validate invalid token on reset password
Better auth does not work on NextJS
Stripe plugin triggers multiple create customer events in Stripe
Issue with Better-Auth Email Verification
Organizations: remove activeOrganization possible?
Cookies not saved in production
clearing 2FA cookie on logout
See what provider made the session
Setting an `apiKey` additional field on users
apiKey
field to my users, like so:
```ts
import { betterAuth } from "better-auth";
export const auth = betterAuth({...But I'm not sure how to generate an unique key for each user on signup. How can I do this?Use database hooks: https://www.better-auth.com/docs/concepts/database#2-after-hook...
custom type in additionalFields
additionalFields
?
Centralized auth
useSession weird behaviour
auth-client.ts
...
List of endpoints?
Can I use better auth as authentication layer between hono backed and next js frontend?