I just need to write a simple python CGI script to parse the contents of a POST request containing JSON. This is only test code so that I can test a client application until th
If you're using CGI, just read data from stdin:
stdin
import sys data = sys.stdin.read()