Coder Social home page Coder Social logo

Comments (2)

AnyGong avatar AnyGong commented on May 28, 2024 3

Thank you very much for your reply, as a beginner in nestjs, this project is very useful, thank you again for creating this library

from ack-nestjs-boilerplate.

andrechristikan avatar andrechristikan commented on May 28, 2024

Hi @AnyGong ,
Sorry for the delay in updating the Usage Document

The configuration of Auth is

  • expiredTime of refreshToken is 8d
  • notBeforeExpiredTime of refreshToken is 1d
  • expiredTime of accessToken is 1d
  • notBeforeExpiredTime of accessToken is 0

which means

  • AccessToken can be use it immediately, and will expire in 1 day
  • But RefreshToken can be use after access token has expired (1 day after create), and will expire in 8 days

you can find the configuration in config file, path is src/config/auth.config.ts

...
...

jwt: {
    accessToken: {
        secretKey:
            process.env.AUTH_JWT_ACCESS_TOKEN_SECRET_KEY || '123456',
        expirationTime: '1d',
        notBeforeExpirationTime: '0'
    },

    refreshToken: {
        secretKey:
            process.env.AUTH_JWT_REFRESH_TOKEN_SECRET_KEY ||
            '123456000',
        expirationTime: '8d',
        notBeforeExpirationTime: '1d' // <<< ---- here the value
    },

    rememberMe: {
        notChecked: 7, // in days
        checked: 30 // in days
    }
},

...
...

Change 'jwt.refreshToken.notBeforeExpirationTime' to '0' will resolve the issue.
After changing the value, you must re-run this project, and re-login to receive the newRefreshToken with 0 value of notBeforeExpirationTime

Hope this will help you, thank you

from ack-nestjs-boilerplate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.