-
Notifications
You must be signed in to change notification settings - Fork 8
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
예약 추가 POST User Authentication 질문 #35
Comments
간단하게는 로그인할 때 아이디 비밀번호를 받아서 스토어에 저장해 놓고 post할 때 실어 보내면 될 것 같은데요 가장 간단하게는 (과제 스펙에 있어서 꼭 필요한 게 아니라면) Authentication을 없애 버려도 되지 않을까요 |
그 아이디 비밀번호 실어서 보내는 방법 찾고 있는데 도저히 안나와서요 ㅠㅠㅠㅠ... header에 실어서 보내봤는데 자꾸 Forbidden Error 떠서요... 더군다나 Authentication 없애면 과제 스펙이랑 어긋나지 않을까요? HW1의 백엔드를 기준으로 구현하라고 했으니.... |
헤더 형식을 어떻게 주셨는지 보면 좋을 것 같은데요,
ex. username admin, password 1234 Django REST 튜토리얼에서 혹시 이렇게 하면 해결이 될까요? 별개로 백엔드는 필요에 따라 수정하라고 되어 있는데 |
질문자분이 겪으신 문제랑 같은 문제인지는 모르겠지만... 그래서 fetch에 만약 ARc를 사용하신다면 api.post() 등의 함수에 해당 옵션을 추가하시면 됩니다. yield call([api, api.post], '/meetings/', data, { headers: (헤더정보), credentials: 'omit' }) 잘 됐으면 좋겠네요! |
두분 답변 합쳐서 잘 해결했습니다! 감사합니다 😀😀😀😀 |
Django 백엔드에서 특정 사용자로 로그인이 되어있지 않으면 meeting의 POST, delete를 금지하게 했었습니다. 그렇다면 Redux-saga에서 Django 서버로 POST할 때 어떻게 Authentication을 하나요??? 이틀 고민하고 질문 드립니다....
The text was updated successfully, but these errors were encountered: