Tagged Questions

5
votes
1answer
357 views

How to do a Post Request in Python?

Hi I'm sitting in a Greyhound Bus with Wifi and want to connect a second Device to the Network. But I have to accept an onscreen contract and the device does not have a browser. To accept the ...
2
votes
2answers
512 views

How do I add basic authentication to a Python REST request?

I have the following simple Python code that makes a simple post request to a REST service - params= { "param1" : param1, "param2" : param2, "param3" : param3 } xmlResults = ...
1
vote
2answers
301 views

Django - 403 error

when I'm using following Python code to send a POST request to my Django website I'm getting 403: Forbidden error. url = 'http://www.sub.domain.com/' values = { 'var': 'test' } try: data = ...
1
vote
0answers
284 views

django: very slow POST request

I have a problem with POST requests on Django. When I'm sending a POST request it takes like 12-13 sec to proceed it. When sending The same request, but using GET method, everything is ok. I created ...
0
votes
0answers
84 views

How to tell Django not to buffer the HTTP POST data?

The client is posting mjpeg stream as HTTP POST: POST /feed/testfeed HTTP/1.0 Content-type: multipart/x-mixed-replace; boundary=--myboundary --myboundary Content-length: 14179 Content-type: ...