Reputation: 293
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
Reputation: 599628
You probably want the cgi
module from the standard library. See the documentation.
Upvotes: 2