Re: Passing parameters via POST in django 1.5

2013-06-19 Thread o_r
They are not in the url, but in the body. I saw this now: Changed in Django 1.5: Before Django 1.5, HttpRequest.POST contained non-form data. This means I have to put this in the header: ContentType: application/x-www-form-urlencoded Seems that jquery does this for you when you serialize a for

Re: Passing parameters via POST in django 1.5

2013-06-19 Thread Anderson
if the parameters are in the URL the correct is request.GET https://docs.djangoproject.com/en/dev/ref/request-response/ On Wed, Jun 19, 2013 at 8:09 AM, o_r wrote: > Hi, > > We're upgrading our application from 1.3 to 1.5. We have quite a few rest > apis in our application. This used to work in