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

Поделиться
HTML-код
  • Опубликовано: 1 окт 2024

Комментарии • 11

  • @rohitkochikkatfrancis
    @rohitkochikkatfrancis 6 месяцев назад

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

  • @mashapoguajay3322
    @mashapoguajay3322 29 дней назад

    How to setup 2fa authentication

  • @prashlovessamosa
    @prashlovessamosa Год назад

    Thank you.

  • @salahaldinedouard5299
    @salahaldinedouard5299 Год назад +1

    Amazing video great work ❤

  • @alisachavez1025
    @alisachavez1025 Год назад +1

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

  • @webdeveloper9826
    @webdeveloper9826 Год назад

    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 Год назад

    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 Год назад

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

    • @nithin3476
      @nithin3476 Год назад

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

    • @nithin3476
      @nithin3476 Год назад

      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])
      }