I was trying to work around https://github.com/kanboard/kanboard/issues/1953 when I eventually found out that authentication worked via curl but failed via the API. Fortunately it was pretty obvious to find the issue in the code: the authentication method identifier Basic shouldn't appear in the header value except when using the standard HTTP Authentication header.
I was trying to work around https://github.com/kanboard/kanboard/issues/1953 when I eventually found out that authentication worked via
curl
but failed via the API. Fortunately it was pretty obvious to find the issue in the code: the authentication method identifierBasic
shouldn't appear in the header value except when using the standard HTTPAuthentication
header.