http POST only returning GET data

Benji York benji at benjiyork.com
Fri Jun 24 23:01:25 EDT 2005


vm wrote:
> Hi, for some reason my POST is not working properly.

Look at the URL again, you missed a character.  You had:

httpSess.request("POST","/",params,headers)

It should be:

httpSess.request("POST","/q",params,headers)

--
Benji York




More information about the Python-list mailing list