Posting JSON Data to a Django App
Overview
The goal is to create a Django app that accepts JSON data via POST requests.
External resources
- TastyPie documentation (API package)
The Tastypie package seems best used as a simple interface between JSON and reads/writes to a database. It does do that very easily, but I was frustrated in using it to de/serialize objects and JSON POST data. - Django packages that support API creation
- How to Post JSON to Django (StackOverflow)