My reason for this error was due to me putting:-
http_method_names = ["POST", "GET"]
in my view class in app/views.py
Http methods need to be in all small characters:-
http_method_names = ["post", "get"]