Re: [Zope] HTTP user authentication in Python

2000-10-07 Thread Philipp Auersperg
The core of HTTP authentication is the following (you have to put the authentication into the HTTP header): import httplib h=httplib.HTTP() h.putheader("AUTHORIZATION", "Basic %s" % string.replace(

[Zope] HTTP user authentication in Python

2000-10-06 Thread Hung Jung Lu
Hi, Where can I find out more information on HTTP user authentication? I have seen the RFC before, but it's a bit too technical to follow. I think Python does not include the authentication/cookie handling part probably because out of concern about abuses. :) Does anyone know where I can find