Backend Solution Better-Auth Integration
How to set a password if we are logged in via a provider?
Handling error of forgetPassword call
2025-04-13T20:05:20.175Z ERROR [Better Auth]: Reset Password: User not found { email: '[email protected]' }
Here is my code:
``` const handleResetRequest = async () => {
setLoading(true);...Provider invalid OAuth2 redirect_uri
Invalid OAuth2 redirect_uri
and I checked the browser logs
```
GET...
Adding custom properties to Organization members
Custom Tables | SQL Schema
id
uses string
[I'm looking at the core schema] and the generated SQL gets a text
type, for example.
1. If I create all tables on my own [Better-Auth Tables + other needed tables] and set that up at the DB level, does the auth
instance still need to know about all of them, i.e. via me configuring the better-auth
object [for a custom field I added on the user
table] and creating my own plugin [for the extra tables]?...RefressAcceshToken in SocialProvider (Microsoft) and NextJs 15
What would be the most secure and preforming way to use Better Auth with Next.js
auto-creating organization on user signup?
Hanging timeout server-side requests using Cloudflare Hyperdrive
New Release Causes: `Field user_id not found in model member`
Does forwarding a JWT from a React SPA to C# .NET app make sense ?
Is there a way to get the refresh token after using a social provider?
How can I get member with user in adapter

guys, is it possible to do with better-aauth??
Error generating schema
npx @better-auth/cli@latest generate
npx @better-auth/cli@latest generate

How can I get other plugin's option in my plugin?
ctx.context.options.plugins?.find((plugin) => plugin.id === "organization")?.options
ctx.context.options.plugins?.find((plugin) => plugin.id === "organization")?.options
cross-site cookie in express
cookieCache doesn't work with customSession plugin
cookieCache
doesn't work once I add customSession
plugin. I enabled query logging for Prisma client, and see that it queries database on every getSession()
call. Maybe I'm missing something obvious. Did anyone have similar issues? Here is my config:
```ts
export const auth = betterAuth({
database: prismaAdapter(db, {...