wagasa
wagasa
BABetter Auth
Created by Putra on 3/12/2025 in #help
SignIn Anonymous on Server
try it
12 replies
BABetter Auth
Created by Putra on 3/12/2025 in #help
SignIn Anonymous on Server
auth.ts
import { nextCookies } from 'better-auth/next-js'
import { anonymous } from 'better-auth/plugins'

export const auth = betterAuth({
plugins: [
anonymous(),
nextCookies(),
],
})
import { nextCookies } from 'better-auth/next-js'
import { anonymous } from 'better-auth/plugins'

export const auth = betterAuth({
plugins: [
anonymous(),
nextCookies(),
],
})
await auth.api.signInAnonymous()
12 replies
BABetter Auth
Created by Réno on 3/12/2025 in #help
No cookies set when using the signInEmail method
did u use "use server" in top the file? in auth.helper.ts?
5 replies
BABetter Auth
Created by Putra on 3/12/2025 in #help
SignIn Anonymous on Server
yes its a possible
12 replies