With CURL this works fine, so the token is correct. However, Cyberduck does not seem to be able to handle this. It asks for the username/password, and after that it asks for a client certificate, but whatever I fill in, it doesn't work. I get this error:
Listing directory ?authz=token failed. Unexpected response (404 Not Found). Please contact your web hosting service provider for assistance.
The path, in this case /, is appended to the GET URL, which alters the token so that authentication fails. Also, the path is not parsed by the server this way.
So I would like to request:
That a GET URL is not URLencoded;
That any path is inserted before the GET variables, instead of appended at the end.
Thanks!
Onno
The text was updated successfully, but these errors were encountered:
Hi,
I have a URL like this (with a Macaroon based authentication token):
With CURL this works fine, so the token is correct. However, Cyberduck does not seem to be able to handle this. It asks for the username/password, and after that it asks for a client certificate, but whatever I fill in, it doesn't work. I get this error:
I found this in the server log:
I see 2 issues here:
?
in the GET URL appears to be URLencoded;/
, is appended to the GET URL, which alters the token so that authentication fails. Also, the path is not parsed by the server this way.So I would like to request:
Thanks!
Onno
The text was updated successfully, but these errors were encountered: