daanish
daanish
Explore posts from servers
BABetter Auth
Created by daanish on 3/6/2025 in #bug-reports
bearer token returns null with OAuth provider
No description
2 replies
BABetter Auth
Created by daanish on 12/25/2024 in #bug-reports
Callbacks issue in passkey plugin
import { Key } from "lucide-react"
import { Button } from "../ui/button"
import { signIn } from "@/lib/auth-client"
import { useAuthState } from "@/hooks/useAuthState";

export const PasskeyButton = () => {
const {
setSuccess,
setError,
setLoading,
resetState
} = useAuthState();

const handlePasskey = async() => {
try{
await signIn.passkey({}, {
onRequest: () => {
resetState()
setLoading(true)
},
onResponse: () => {
setLoading(false)
},
onError: (ctx) => {
setError(ctx.error.message)
},
onSuccess: () => {
setSuccess("loggedIn Successfully")
}
})

} catch(error) {
console.log(error)
setError("Something went wrong")
}
}

return (
<Button onClick={handlePasskey} className="w-full">
<Key />
Sign-in with Passkey
</Button>
)
}
import { Key } from "lucide-react"
import { Button } from "../ui/button"
import { signIn } from "@/lib/auth-client"
import { useAuthState } from "@/hooks/useAuthState";

export const PasskeyButton = () => {
const {
setSuccess,
setError,
setLoading,
resetState
} = useAuthState();

const handlePasskey = async() => {
try{
await signIn.passkey({}, {
onRequest: () => {
resetState()
setLoading(true)
},
onResponse: () => {
setLoading(false)
},
onError: (ctx) => {
setError(ctx.error.message)
},
onSuccess: () => {
setSuccess("loggedIn Successfully")
}
})

} catch(error) {
console.log(error)
setError("Something went wrong")
}
}

return (
<Button onClick={handlePasskey} className="w-full">
<Key />
Sign-in with Passkey
</Button>
)
}
Callbacks are not working in passkey plugin at version 1.1.3 It successfully login the user but can't show message or redirect
1 replies
BABetter Auth
Created by daanish on 11/19/2024 in #bug-reports
No control Over credentials on server side
No description
9 replies
BABetter Auth
Created by daanish on 11/17/2024 in #bug-reports
oslo package
No description
11 replies
PPrisma
Created by daanish on 6/24/2024 in #help-and-questions
prisma edge compactible with lucia -auth with node postgres typescript error
No description
2 replies