Instagram-Clone-Coding / React_instagram_clone

Instagram Clone Coding - Frontend using React
http://ec2-52-79-71-191.ap-northeast-2.compute.amazonaws.com
13 stars 6 forks source link

hotfix/auth: 백엔드 유저인증 변경사항 적용 #80

Closed live-small closed 2 years ago

live-small commented 2 years ago

관련 이슈

https://github.com/Instagram-Clone-Coding/React_instagram_clone/issues/71

작업사항

주요 변경 로직

고민

파일: src > customAxios.ts

  1. reissue(토큰 재발급) 호출 실패
  2. access, refresh 둘 다 만료된 것
  3. refresh 제거 api 호출
  4. isLogin = false로 변경해야하는데, isLogin = false를 인터셉터 안에서는 호출할 수 없어서 어떻게 처리해야할지 고민입니다.

일단, 전역상태값은 새로고침 시 초기값이 되기에, (3) refresh 제거 api 호출 후, 새로고침 시켜뒀습니다. 하지만 이럴 경우에, 토큰 재발급 api를 불필요하게 호출하게 됩니다. (로그인 후에 다시 재방문했을 때, 로그인 후의 페이지를 보여주기 위해 최상단에서 토큰 재발급 api를 호출하기 때문입니다)

@kimyoungyin 영인님이 제안주신 customAxios(토큰재발급을 호출하는 axios 인스턴스)에 인터셉터를 이용하는 방법도 생각해봤습니다. 그래도, 인터셉터 내에서는 전역상태값 접근이 안되다보니.. customAxios에서 처리해야하는 이유는 찾지못했습니다 😢