Проект

Общее

Профиль

JWW-JWT » История » Версия 2

Александр Александров, 25.08.2020 15:14

1 1 Александр Александров
h1. JWT
2
3
*JSON Web Token (JWT)*<notextile></notextile> — это открытый стандарт (<notextile></notextile>"RFC 7519":https://tools.ietf.org/html/rfc7519<notextile></notextile>) для создания токенов доступа, основанный на формате <notextile></notextile>"JSON (JSON)":https://ru.wikipedia.org/wiki/JSON<notextile></notextile>. Как правило, используется для передачи данных для <notextile></notextile>"аутентификации (Аутентификация)":https://ru.wikipedia.org/wiki/%D0%90%D1%83%D1%82%D0%B5%D0%BD%D1%82%D0%B8%D1%84%D0%B8%D0%BA%D0%B0%D1%86%D0%B8%D1%8F в клиент-серверных приложениях. Токены создаются сервером, подписываются секретным ключом и передаются клиенту, который в дальнейшем использует данный токен для подтверждения своей личности.
4
5
# "jwt.io":https://jwt.io/
6
# "JSON Web Token":https://ru.wikipedia.org/wiki/JSON_Web_Token
7
# "Пять простых шагов для понимания JSON Web Tokens (JWT)":https://habr.com/ru/post/340146/
8
# "JWT простым языком: что такое JSON токены и зачем они нужны":https://proglib.io/p/json-tokens/
9
# "Добавляем Refresh Token":https://habr.com/ru/post/466929/
10 2 Александр Александров
# "Spring Boot 2 JWT Authentication with Spring Security":https://bezkoder.com/spring-boot-jwt-mysql-spring-security-architecture/
11
# "Spring Boot Token based Authentication with Spring Security & JWT":https://bezkoder.com/spring-boot-jwt-authentication/
12
# "Microservices with Spring Boot — Authentication with JWT (Part 3)":https://medium.com/omarelgabrys-blog/microservices-with-spring-boot-authentication-with-jwt-part-3-fafc9d7187e8
13
# "Implementing JWT Authentication on Spring Boot APIs":https://auth0.com/blog/implementing-jwt-authentication-on-spring-boot/
14
# "Аутентификация с использованием Spring Security и JWT-токенов":https://habr.com/ru/post/278411/
15
# "Spring Boot Security + JWT (JSON Web Token) Authentication Example":https://www.techgeeknext.com/spring/spring-boot-security-token-authentication-jwt
16
# "JWT-аутентификация в Spring Boot Webflux":https://nuancesprog.ru/p/9024/
17
18
{{youtube(ke9-Zln8eRw)}}
Go to top