I want to print the entire request object that comes to the server. I need to see all the parameters that the request carries from the client, since I do not have a client code (this is an Android client). I am in the view.py file and I use the function
def index(request): return HttpResponse("test params")
to print the request object
Please suggest a code. It would be even better if I could print the request in the browser, and not in the console.
python django
user1796624
source share