roguesherlock
roguesherlock
Explore posts from servers
BABetter Auth
Created by roguesherlock on 2/6/2025 in #help
How do I setup bearer auth for social logins?
sorry I have not worked with this in a while, I think i ended up not using better auth. iirc better auth's bearer token wasn't a standalone authentication mechansim, rather a nice to have for the existing session based auth. And so you still have to go through session based login flow first to create a session, I think that's where I was having trouble with cause both my api and frontend were hosted on different domains.
23 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
My only feedback would be that a better error messages when schema/db doesn't match better auth's schema would be nice. Other than it has been awesome experience so far from api design, feature set, tooling, docs, to support
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
thank you so much for your help!
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
@bekacru that worked! I feel so stupid now lol
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
export default async function SignIn() {
const session = await auth.api.getSession({
headers: await headers(),
})
if (session && session.user) {
redirect("/")
}
return (
<div className="grid h-full min-h-[80vh] place-items-center">
{/* <SignInForm /> */}
<SignInWithGithub />
</div>
)
}
export default async function SignIn() {
const session = await auth.api.getSession({
headers: await headers(),
})
if (session && session.user) {
redirect("/")
}
return (
<div className="grid h-full min-h-[80vh] place-items-center">
{/* <SignInForm /> */}
<SignInWithGithub />
</div>
)
}
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
I do have a check in my page for the user and it redirect users if they're logged in. I'm assume it's failing to check for the user
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
but weirdly now i get 500 error as soon as I hit my sign in page,
[TypeError: The "payload" argument must be of type object. Received null] {
code: 'ERR_INVALID_ARG_TYPE'
}
GET /sign-in?redirect=http%3A%2F%2Flocalhost%3A3000%2F 500 in 1931ms
[TypeError: The "payload" argument must be of type object. Received null] {
code: 'ERR_INVALID_ARG_TYPE'
}
GET /api/auth/get-session 500 in 105ms
[TypeError: The "payload" argument must be of type object. Received null] {
code: 'ERR_INVALID_ARG_TYPE'
}
GET /sign-in?redirect=http%3A%2F%2Flocalhost%3A3000%2F 500 in 100ms
[TypeError: The "payload" argument must be of type object. Received null] {
code: 'ERR_INVALID_ARG_TYPE'
}
GET /sign-in?redirect=http%3A%2F%2Flocalhost%3A3000%2F 500 in 1931ms
[TypeError: The "payload" argument must be of type object. Received null] {
code: 'ERR_INVALID_ARG_TYPE'
}
GET /api/auth/get-session 500 in 105ms
[TypeError: The "payload" argument must be of type object. Received null] {
code: 'ERR_INVALID_ARG_TYPE'
}
GET /sign-in?redirect=http%3A%2F%2Flocalhost%3A3000%2F 500 in 100ms
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
you were right, it removed that field!
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
let me just remove it and create it from scratch
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
And when I try using it github i get this error,
GET /api/auth/get-session 200 in 217ms
GET /api/auth/get-session 200 in 55ms
POST /api/auth/sign-in/social 200 in 1118ms
GET /api/auth/get-session 200 in 26ms
2025-01-27T12:46:32.529Z ERROR [Better Auth]: unable_to_create_user
GET /api/auth/callback/github?code=afab850b423d791cd85b&state=dEI2Hz3Bi9MZ7X4qgj8ZceOElx5o_3FA 302 in 1788ms
GET /api/auth/error?error=unable_to_create_user 200 in 37ms
GET /api/auth/get-session 200 in 217ms
GET /api/auth/get-session 200 in 55ms
POST /api/auth/sign-in/social 200 in 1118ms
GET /api/auth/get-session 200 in 26ms
2025-01-27T12:46:32.529Z ERROR [Better Auth]: unable_to_create_user
GET /api/auth/callback/github?code=afab850b423d791cd85b&state=dEI2Hz3Bi9MZ7X4qgj8ZceOElx5o_3FA 302 in 1788ms
GET /api/auth/error?error=unable_to_create_user 200 in 37ms
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
should I manually modify it?
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
I have not generate this schema, it's generated by better auth cli
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
cc: @bekacru
40 replies
BABetter Auth
Created by roguesherlock on 1/27/2025 in #help
Unable to sign up using email / password
schema.prisma
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}

model User {
id String @id
email String @unique
password_hash String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
name String
emailVerified Boolean
image String?
sessions Session[]
accounts Account[]

@@map("user")
}

model Session {
id String @id
expiresAt DateTime
token String
createdAt DateTime
updatedAt DateTime
ipAddress String?
userAgent String?
userId String
user User @relation(fields: [userId], references: [id], onDelete: Cascade)

@@unique([token])
@@map("session")
}

model Account {
id String @id
accountId String
providerId String
userId String
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
accessToken String?
refreshToken String?
idToken String?
accessTokenExpiresAt DateTime?
refreshTokenExpiresAt DateTime?
scope String?
password String?
createdAt DateTime
updatedAt DateTime

@@map("account")
}

model Verification {
id String @id
identifier String
value String
expiresAt DateTime
createdAt DateTime?
updatedAt DateTime?

@@map("verification")
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}

model User {
id String @id
email String @unique
password_hash String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
name String
emailVerified Boolean
image String?
sessions Session[]
accounts Account[]

@@map("user")
}

model Session {
id String @id
expiresAt DateTime
token String
createdAt DateTime
updatedAt DateTime
ipAddress String?
userAgent String?
userId String
user User @relation(fields: [userId], references: [id], onDelete: Cascade)

@@unique([token])
@@map("session")
}

model Account {
id String @id
accountId String
providerId String
userId String
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
accessToken String?
refreshToken String?
idToken String?
accessTokenExpiresAt DateTime?
refreshTokenExpiresAt DateTime?
scope String?
password String?
createdAt DateTime
updatedAt DateTime

@@map("account")
}

model Verification {
id String @id
identifier String
value String
expiresAt DateTime
createdAt DateTime?
updatedAt DateTime?

@@map("verification")
}
40 replies