반응형

Postman이라는 프로그램 다운로드 후 POST 테스트를 진행


POST로 보냈지만 GET으로 전달되는 오류 발생



from django.views.decorators.csrf import csrf_exempt


@csrf_excempt

def test(request):


함수위에 저렇게도 써봤지만 동일했다.



그러다 발견한 댓글


@rogierborst thanks for answer! Remove slash at the end of URL worked for me!

POST

http://api.domain.com/api/products/

to

http://api.domain.com/api/products


/를 붙였더니 제대로 작동했다.



/하나로 POST인지 GET인지 나뉠수 있나보다...



참고 : 

https://github.com/postmanlabs/postman-app-support/issues/450



반응형

'개발 > django' 카테고리의 다른 글

Django host name error  (0) 2019.02.07
Rest Framework  (0) 2019.01.31
앱별로 로그쌓기  (0) 2019.01.22
로그 백업 방식 (logging - handlers)  (0) 2019.01.22
Fake  (0) 2019.01.17

+ Recent posts