Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Json parse error using POST in django rest api

I am trying to implement a simple GET/POST api via Django REST framework

views.py

class cuser(APIView):
def post(self, request):
   stream  = BytesIO(request.DATA)
    json = JSONParser().parse(stream)
    return Response()

urls.py

from django.conf.urls import patterns, url
from app import views
urlpatterns = patterns('',

           url(r'^challenges/',views.getall.as_view() ),
           url(r'^cuser/' , views.cuser.as_view() ),
      )

I am trying to POST some json to /api/cuser/ (api is namespace in my project's urls.py ) , the JSON

{
"username" : "abhishek",
"email" : "[email protected]",
"password" : "secretpass"
}

I tried from both Browseable API page and httpie ( A python made tool similar to curl)

httpie command

http --json POST http://localhost:58601/api/cuser/ username=abhishek [email protected] password=secretpass

but I am getting JSON parse error :

JSON parse error - Expecting property name enclosed in double quotes: line 1 column 2 (char 1)

Whole Debug message using --verbose --debug

    POST /api/cuser/ HTTP/1.1

Content-Length: 75

Accept-Encoding: gzip, deflate

Host: localhost:55392

Accept: application/json

User-Agent: HTTPie/0.8.0

Connection: keep-alive

Content-Type: application/json; charset=utf-8



{"username": "abhishek", "email": "[email protected]", "password": "aaezaakmi1"}

HTTP/1.0 400 BAD REQUEST

Date: Sat, 24 Jan 2015 09:40:03 GMT

Server: WSGIServer/0.1 Python/2.7.9

Vary: Accept, Cookie

Content-Type: application/json

Allow: POST, OPTIONS



{"detail":"JSON parse error - Expecting property name enclosed in double quotes: line 1 column 2 (char 1)"}
like image 533
user001 Avatar asked Jan 23 '15 16:01

user001


People also ask

What does JSONParser do Django?

JSONParser. It parses the incoming request JSON content into python content type dict. It is used if "Content-Type" is set to "application/json".

What is Django Restapi?

Django REST framework (DRF) is a powerful and flexible toolkit for building Web APIs. Its main benefit is that it makes serialization much easier. Django REST framework is based on Django's class-based views, so it's an excellent option if you're familiar with Django.


2 Answers

The problem that you are running into is that your request is already being parsed, and you are trying to parse it a second time.

From "How the parser is determined"

The set of valid parsers for a view is always defined as a list of classes. When request.data is accessed, REST framework will examine the Content-Type header on the incoming request, and determine which parser to use to parse the request content.

In your code you are accessing request.DATA, which is the 2.4.x equaivalent of request.data. So your request is being parsed as soon as you call that, and request.DATA is actually returning the dictionary that you were expecting to parse.

json = request.DATA

is really all you need to parse the incoming JSON data. You were really passing a Python dictionary into json.loads, which does not appear to be able to parse it, and that is why you were getting your error.

like image 172
Kevin Brown-Silva Avatar answered Oct 05 '22 11:10

Kevin Brown-Silva


I arrived at this post via Google for

"detail": "JSON parse error - Expecting property name enclosed in double-quotes": Turns out you CANNOT have a trailing comma in JSON.

So if you are getting this error you may need to change a post like this:

{
    "username" : "abhishek",
    "email" : "[email protected]",
    "password" : "secretpass",
}

to this:

{
    "username" : "abhishek",
    "email" : "[email protected]",
    "password" : "secretpass"
}

Note the removed comma after the last property in the JSON object.

like image 36
user1847 Avatar answered Oct 05 '22 12:10

user1847