Dear Maintainer,
* What led up to the situation?
I am using wget to download files from a heating system. This
needs Authorization.
* What exactly did you do (or not do) that was effective (or
ineffective)?
wget --user foo --password bar http://<url>
* What was the outcome of this action?
401 Unauthorized
* What outcome did you expect instead?
Get the expectet file
here the requests wget version 1.13.4
---request begin---
GET /baz.xml HTTP/1.1
User-Agent: Wget/1.13.4 (linux-gnu)
Accept: */*
Host: 192.168.200.100
Connection: Keep-Alive
Authorization: Digest username="bar", realm="foo",
nonce="350bf443e50330f33434345e35e0a404", uri="/baz.xml",
response="39d02854cd5a7bc8c6597f8f2e5c8e7e"
---request end---
here the request wget version 1.16.3
401 Unauthorized