python-zeep
python-zeep copied to clipboard
authentication_header
Hi I would like to know if it is possible to use such header in zeep.
base64string = base64.encodebytes(('%s:%s' % (username,password)).encode()).decode().strip()
authentication_header = {
"WWW-Authenticate": "https://www.test.matrikkel.no",
"Authorization": "Basic %s" % base64string
}
I have been looking around but did not find anything. If someone could help, this would be very appreciated ! Thanks