-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic HTTP Auth does not work #36
Comments
Okay. Thanks for the bug report. I haven't looked into this but as a quick workaround, have you tried:
|
@lucashenning, yes, I tried. The Basic HTTP Auth header is also missing... |
@lucashenning, could you please take the time to this bug? I think this is probably a really serious problem. |
I assume the reason is in a server that has a poor Basic Auth implementation, and not in a client. The server response on the first request from the client:
Here you can see that The only way to force authentication is to include the required Basic Auth header in the initial client request. This behavior has been implemented by default in Fortunately I found an easy way to get around this problem. The only need to craft the required Basic Auth header and include it in section
|
Hi!
@lucashenning, it seems that option
auth
has no effect and because of this Basic HTTP Auth does not work.The snippet from my Logstash pipeline configuration:
I expect the Basic HTTP Auth header in an HTTP request (
Authorization: Basic dXNlcjpwYXNz
) generated bylogstash-filter-rest
, but it is missing!Here is the real HTTP request:
The text was updated successfully, but these errors were encountered: