[Fixed]-POST parameters formatted as JSON

1👍

There is no need for any parsing at the framework level. The body of the post request is always available in request.body, so you can access it directly:

result = json.loads(request.body)

0👍

May be it will help you bit more to handle.

import json
import urlparse

json.dumps(urlparse.parse_qs("id=1&text=foo"))

Leave a comment