Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm sending the following json message via POST request:

{
    “ID”:”17”,
    “FIRST_NAME”:”John”,
    “LAST_NAME”:”Doe”,
    “TOKEN”:”8cdde0ef552e305cb44e143d3f8c742fb35caab8f360e7”
}

I'm loading the json in django by json_message=simplejson.loads(request.raw_post_data) and I keep getting the following exception:

Expecting property name: line 2 column 1 (char 2)

Does anybody know what the issue is? I searched this online and not finding it. I was able to parse the exact same json message in another app using the Play! framework, so i'm not sure if there is something specific to django I'm missing?

share|improve this question

1 Answer

up vote 1 down vote accepted

I had that same error message once. Try fixing the quotes. It's a small bug I think...see if that works. Something like this:

{
    "ID" : "17",
    "FIRST_NAME" : "John",
    "LAST_NAME" : "Doe",
    "TOKEN" : "8cdde0ef552e305cb44e143d3f8c742fb35caab8f360e7"
}

I tried it and it worked.

share|improve this answer
Works!! thanks, couldn't find the error for a while. – KVISH Jul 3 '12 at 18:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.