I am having problems getting variables out of a PUT request. I have tried
self.request.POST['varname'], self.request.GET['varname'], self.request.get('varname'),self.request.get_all('varname') and all return None or empty value. I am sending request through jquery and the form data section is filled out correctly for the request. What am I missing here? I would have thought that the variables would be accessed the same way as the POST variables. Let me know!