Ping
Ping
BABetter Auth
Created by newkind on 4/4/2025 in #help
Slow API response time until sign out & sign in again
It could be caching related issues. Whether the caching is in BA layer, or your server layer, or your DB layer, not sure. Also, a tip to help improve query performance is to index important fields in your DB: https://www.better-auth.com/docs/guides/optimizing-for-performance#recommended-fields-to-index
2 replies
BABetter Auth
Created by Shyam Verma on 4/4/2025 in #help
Error on Signup with OTP
Are you 100% sure that your data.otp value is correct?
5 replies
BABetter Auth
Created by Xirynx on 4/4/2025 in #help
Authentication with Express backend + Next.js frontend
You can make a fetch request to your auth server endpoint with the needed headers/body/etc. I recommend using the OpenAPI plugin to see all endpoints as well as the required headers/body to do the calls.
6 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
Awesome! Good to hear :) If you do run into any issues regarding the adapter, just LMK!
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
I'm honestly not sure, I haven't tested it 👀
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
How is convex adapter going for you? Any troubles with it?
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
I saw that 🔥🔥
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
Anyway, I'm glad it's solved.
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
huh, well, that's unlucky I guess 🤣
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
I wonder why it didn't give you type errs here tho 🤔
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
XD I didn't catch that
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
Oh my goodness!
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
import { createAuthClient } from "better-auth/react";
import type { auth } from "./auth.ts";
import { inferAdditionalFields } from "better-auth/client/plugins";

export const authClient = createAuthClient({
baseURL: "http://localhost:3000",
plugins: [inferAdditionalFields<typeof auth>()],
});

authClient.signUp.email({
name: "John Doe",
password: "password",
referredBy: "123",
});
import { createAuthClient } from "better-auth/react";
import type { auth } from "./auth.ts";
import { inferAdditionalFields } from "better-auth/client/plugins";

export const authClient = createAuthClient({
baseURL: "http://localhost:3000",
plugins: [inferAdditionalFields<typeof auth>()],
});

authClient.signUp.email({
name: "John Doe",
password: "password",
referredBy: "123",
});
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
Some random strange thing is blocking the types for some reason.
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
No description
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
Can you remove plugins: []? Sometimes that can mess up types
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
From what you provided, it looks fine to me. Do you think you can show me your whole auth.ts file?
35 replies
BABetter Auth
Created by RadiantFrog on 4/3/2025 in #help
Cannot set additionalField when calling signUp.email
Are you sure you're importing auth correctly? usually local import pathnames are ./auth
35 replies
BABetter Auth
Created by bwhitney on 4/3/2025 in #bug-reports
BetterAuthError [BetterAuthError: Session data is too large
Yeah, not sure if you can do much about this one. Unless you want to implement a system which converts base64 imgs to png or something and save it in a DB like s3 yourself, then set the img url to your s3 user img url
8 replies
BABetter Auth
Created by Aymeric on 4/3/2025 in #help
Importing TWO_FACTOR_ERROR_CODES – Is It Possible?
Not right now, but I just made a PR to fix this. https://github.com/better-auth/better-auth/pull/2102
4 replies