You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
axios interceptor는 비동기 통신이 이루어지기 전에 요청(request)나 응답(response)을 가로채 작업을 추가로 수행한 뒤 통신이 이루어지게 하는 기능이다.
axios interceptor는 로그인 시 토큰 인증할 때만 사용하지는 않지만 토큰 인증시 요청을 보낼 때 header에 accessToken을 함께 실어 보내고, 응답 받을 때 에러가 발생하면 (accessToken이 만료)되면 refreshToken을 확인하여 재발급을 요청한다.
axios interceptor란?
axios interceptor는 비동기 통신이 이루어지기 전에 요청(request)나 응답(response)을 가로채 작업을 추가로 수행한 뒤 통신이 이루어지게 하는 기능이다.
axios interceptor는 로그인 시 토큰 인증할 때만 사용하지는 않지만 토큰 인증시 요청을 보낼 때 header에 accessToken을 함께 실어 보내고, 응답 받을 때 에러가 발생하면 (accessToken이 만료)되면 refreshToken을 확인하여 재발급을 요청한다.
The text was updated successfully, but these errors were encountered: