We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
사용자들이 로그인에 실패를 하고, 다시 로그인을 진행할떄 network ReqHeader이슈 가 발생하였습니다.
기존 코드는 아래와 같았으며, 로그인이 진행되지 않았다는 것은, token정보가 없다는 것과 동일합니다. 하지만, GET_HEADER_TOKEN함수를 사용하여 token정보를 요청하여 request header에 넣어주고 있었습니다.
export const postLoginInfo = async (body: LoginInfoType) => { const { data } = await axios.post(POST_LOGIN_INFO, body, GET_HEADER_TOKEN()); return data; };
위의 코드를, 아래와 같이 변경하여 로그인 api에 대해서 더 이상 request header에 넣어주지 않았고, 문제를 해결하였습니다.
export const postLoginInfo = async (body: LoginInfoType) => { const { data } = await axios.post(POST_LOGIN_INFO, body); return data; };
좀 더 근본적인 문제는 request 헤더에 어떤 데이터가 들어가서 에러가 발생했는지 알아내는 것이 이번 이슈 작성의 요점이라 생각합니다.
저녁에 추가하겠습니다
The text was updated successfully, but these errors were encountered:
No branches or pull requests
두잇 로그인 에러
사용자들이 로그인에 실패를 하고,
다시 로그인을 진행할떄 network ReqHeader이슈 가 발생하였습니다.
기존 코드는 아래와 같았으며,
로그인이 진행되지 않았다는 것은, token정보가 없다는 것과 동일합니다.
하지만, GET_HEADER_TOKEN함수를 사용하여 token정보를 요청하여 request header에 넣어주고 있었습니다.
위의 코드를, 아래와 같이 변경하여 로그인 api에 대해서 더 이상 request header에 넣어주지 않았고, 문제를 해결하였습니다.
좀 더 근본적인 문제는 request 헤더에 어떤 데이터가 들어가서 에러가 발생했는지 알아내는 것이
이번 이슈 작성의 요점이라 생각합니다.
저녁에 추가하겠습니다
The text was updated successfully, but these errors were encountered: