Re: HTTP Response POST

2005-12-13 Thread Jeroen Ruigrok van der Werven
On 12/13/05, PythonistL <[EMAIL PROTECTED]> wrote: > > I would use a HTTP sniffer and check what is normally send( from a > browser).Then I would try to do the same with Django If you use Firefox check out the LiveHTTPHeaders or Tamper Data extensions. These allow you to view the HTTP headers and

Re: HTTP Response POST

2005-12-13 Thread PythonistL
I would use a HTTP sniffer and check what is normally send( from a browser).Then I would try to do the same with Django Regards, L.

HTTP Response POST

2005-12-12 Thread Bsoltani
I'm trying to do Paypal authentication with django and it requires me to take a post from paypal, append a value to it, and then send it back. I have no problem getting the post from paypal, but what is the best way to send it back to paypal. I know it involves the HttpResponse object, but i'm l