Skip to content
New issue

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

Login Error Issue #178

Open
jin-Pro opened this issue Mar 31, 2022 · 0 comments
Open

Login Error Issue #178

jin-Pro opened this issue Mar 31, 2022 · 0 comments

Comments

@jin-Pro
Copy link
Member

jin-Pro commented Mar 31, 2022

두잇 로그인 에러

사용자들이 로그인에 실패를 하고,
다시 로그인을 진행할떄 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 헤더에 어떤 데이터가 들어가서 에러가 발생했는지 알아내는 것이
이번 이슈 작성의 요점이라 생각합니다.

저녁에 추가하겠습니다

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant