|
Перевод 10
Перевод 10
Видео: ссылка
Часть 1 - Введение
Hello everyone!
Всем привет
Today we're going to learn
how implement our own JWT authentication
inside of our NestJS application
Сегодня мы собираемся изучить
как реализовать нашу собственную JWT аутентификацию
внутри нашего NestJS приложения
We also going to learn
how to use refresh tokens
to get new access token
Мы также собираемся изучить,
как использовать refresh token,
чтобы получить новый access token.
As well before we get started
first we have to understand the concept between
refresh tokens and access tokens
Также прежде чем мы начнем,
сначала мы должны разобраться между понятиями
refresh tokens и access tokens
When a user first logs
he get a refresh token and an access token
Когда пользователь впервые входит в систему
он получает refresh token и access token
For every request
he get a refresh token and an access token
Для каждого запроса
он получает refresh token и access token
|