I want to print the entire request object that comes to the server. I need to see all of the parameters that the request carries from the client since I don't have the clients's code (it's an Android client). I'm in the view.py file, and I'm using the function
def index(request):
return HttpResponse("test params")
to print the request object
Please suggest code. It would be even better if I can print the request in the browser and not in the console.
print requestis for console.return HttpResponse(request)?