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
02/18 회의에서 API 응답 명세가 확정되었습니다.
기존 응답은 다음과 같습니다.
{ "message": null "data": { "foo": "bar" } }
{ "message": "로그인이 실패했습니다.", "data": null }
회의 이후 변한 응답의 형식은 다음과 같습니다.
{ "status": 200, "message": null "data": { "foo": "bar" } }
{ "status": 400, "message": "로그인이 실패했습니다.", "data": null }
기존에 mesage, data는 잘 넘겨주고 있으므로 status만 추가하면 될 것 같습니다.
mesage
data
status
The text was updated successfully, but these errors were encountered:
seokjin8678
Successfully merging a pull request may close this issue.
이슈 내용
02/18 회의에서 API 응답 명세가 확정되었습니다.
기존 응답은 다음과 같습니다.
성공
실패
회의 이후 변한 응답의 형식은 다음과 같습니다.
성공
실패
기존에
mesage
,data
는 잘 넘겨주고 있으므로status
만 추가하면 될 것 같습니다.The text was updated successfully, but these errors were encountered: