2023-08-16 정기 개발 회의 #11
Replies: 5 comments 15 replies
-
집현전 기술블로그
|
Beta Was this translation helpful? Give feedback.
-
현재 스웨거 확인할 수 있는 경로가 바뀌었을까요? |
Beta Was this translation helpful? Give feedback.
-
https://github.com/jiphyeonjeon-42/frontend/issues/427 /auth/logout 호출을 보내지만 access_token을 없애지 않습니다
|
Beta Was this translation helpful? Give feedback.
-
소셜 로그인 진행 상황 공유DB 설계user
users
google_oauth
intra_oauth
intra_oauth 테이블 createCREATE TABLE `intra_oauth` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
`userId` INT NOT NULL,
`slack` VARCHAR(255) UNIQUE,
`intraId` INT UNIQUE,
`isValid` BOOLEAN DEFAULT FALSE,
`createdAt` DATETIME(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
`updatedAt` DATETIME(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6),
INDEX (`userId`) ); intra_oauth 테이블에 값 입력INSERT INTO intra_oauth (userId, intraId, slack, createdAt, updatedAt)
SELECT id, intraId, slack, createdAt, updatedAt FROM user; users 테이블에 값 입력INSERT INTO users (id, nickname, penaltyEndDate, role, createdAt, updatedAt)
SELECT id, nickname, penaltyEndDate, role, createdAt, updatedAt FROM user; google oauth api 생성참고: https://www.joinc.co.kr/w/man/12/oAuth2/Google 요구사항 분석
v2 auth api 명세작성중... 생각해야 하는 일
|
Beta Was this translation helpful? Give feedback.
-
개발 서버 진행 공유lightsail 인스턴스에서 정상적으로 동작하나 쿠키 관련 문제가 발생해 잠시 정지시킨후 수정중입니다. 원인기존 환경 (로컬)
-> 도메인 일치, 포트만 다름 기존 환경 (배포)
-> 도메인(42library.kr)과 서브도메인이 일치 개발 서버
기존 환경과는 달리 도메인이 다르기 때문에 CORS를 적용해야 하는데, 필요한 플래그를 넣어주었음에도 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
2023-08-09 정기 개발 회의
Beta Was this translation helpful? Give feedback.
All reactions