Python Request Post with param data
This is the raw request for an API call:
This is the raw request for an API call:
I need to get all the Django request headers. From what I’ve read, Django simply dumps everything into the request.META variable along with a lot of other data. What would be the best way to get all the headers that the client sent to my Django application?
I am trying to send 100 requests at a time to a server http://httpbin.org/uuid using the following code snippet