본문 바로가기
TIL

20. [TIL] 오늘의 배움일지 ( 20-10-13 )

by VIPeveloper 2020. 10. 13.
반응형

1. python 시간 관련

inma.tistory.com/96

from datetime import datetime


s = "2016-09-15 01:00:04"
timestamp = datetime.strptime(s, "%Y-%m-%d %H:%M:%S.%f").timestamp()
print(timestamp) # 1473868804

2. SSO 관련

한글 문서를 찾았다. 갓갓 

 

MSA 인증 서비스 Keycloak User Storage SPI

SPI ?Keycloak 에서 제공하는 모듈과 같은 개념이다. SPI 는 Service Provider Interface 의 줄임말로 Keycloak 에 있는 각 기능들을 개발자가 직접 구현할 수 있게 도와준다. 일반적으로 Provider 파일과 ProviderFact

subji.github.io

나중에 해볼만한 프로젝트도 찾았다.

 

Single Sign On (SSO) Example with JSON Web Token (JWT) and Spring Boot

This tutorial will walk you through the steps of creating a Single Sign On (SSO) Example with JSON Web Token (JWT) and Spring Boot What you'll build You'll build 3 separated services: 1 Authentication Service: will be deployed at localhost:8080. 2 Resource

hellokoding.com

 

반응형