sandy
sandy

Reputation: 293

Retrieve HTTP POST request parameters (sent from flex app) in python

I am sending the parameters from flex application through HTTP POST request to Python/PSP script. I am able to call PSP script from flex app using HTTP POST request, but i am not able to use/retrieve these parameters in Python/PSP.

Upvotes: 1

Views: 689

Answers (1)

Daniel Roseman
Daniel Roseman

Reputation: 599628

You probably want the cgi module from the standard library. See the documentation.

Upvotes: 2

Related Questions