Level Up Your Next.js Web Apps: Complete Clerk.js Authentication Tutorial for Next.js Developers!

Sdílet
Vložit
  • čas přidán 4. 09. 2024

Komentáře • 11

  • @rohitkochikkatfrancis
    @rohitkochikkatfrancis Před 5 měsíci

    Finally !!!!!
    Someone who knows how to explain clearly with proper examples . THANK YOUU

  • @alisachavez1025
    @alisachavez1025 Před 11 měsíci +1

    The best explanation video I found yet! Thank you for your work

  • @salahaldinedouard5299
    @salahaldinedouard5299 Před rokem +1

    Amazing video great work ❤

  • @prashlovessamosa
    @prashlovessamosa Před 11 měsíci

    Thank you.

  • @mashapoguajay3322
    @mashapoguajay3322 Před 3 dny

    How to setup 2fa authentication

  • @webdeveloper9826
    @webdeveloper9826 Před rokem

    Hi brother
    I am following you from your,s truly day
    For 4 years i have a request to kindly create a full server side series on any modern tech

  • @code-env
    @code-env Před rokem

    Hey Bro the course was great! what is I don't want to store the user in the clerk dashboard and i want to store the user in my own customize db like mongodb how do I go about this?

    • @asifiqbal3507
      @asifiqbal3507 Před rokem

      Hey I want to store it in my custom postgress sql db. Did you found any solution ?

    • @nithin3476
      @nithin3476 Před rokem

      model Session {
      id String @id @default(cuid())
      sessionToken String @unique
      userId String
      expires DateTime
      user User @relation(fields: [userId])
      @@index([userId])
      }

    • @nithin3476
      @nithin3476 Před rokem

      model Account {
      id String @id @default(cuid())
      userId String
      type String
      provider String
      providerAccountId String
      refresh_token String? @db.Text
      access_token String? @db.Text
      expires_at Int?
      token_type String?
      scope String?
      id_token String? @db.Text
      session_state String?
      user User @relation(fields: [userId], references: [id], onDelete: Cascade)
      @@unique([provider, providerAccountId])
      @@index([userId])
      }