-
Notifications
You must be signed in to change notification settings - Fork 238
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
NTLM authentication on Windows does not work #359
Comments
This is likely falling back to the compiled in-tree version, which doesn't have this enabled by default. I think it would make sense though for this to be a feature on the |
For anyone who might want to take a stab at this, here's the place where this is getting configured in the libcurl build: Line 106 in 65d360f
|
same problem with mac os catlina |
I think is is solved by #428. We're using this crate with NTLM authentification with Windows and Linux. |
I am facing exact same issue with ntlm authentication in latest curl crate (0.4.33). any solution suggestion please? |
Did you activate the ntlm feature? |
I believe NTLM feature is enabled by default. I am able to access configured NLTM proxy server through web browser though. |
@pbert519 while I am being new to rust, realised little late about feature activation you asked. Below line in Cargo.toml helped to resolved issue. Thanks for help!
|
I'm evaluating rust for enterprise software development. It's crucial for us to have simple way to make http requests with Kerberos and NTLM authentication. I found no other crates that can do that.
I'm building on windows with cargo.toml settings:
code:
Running this code on windows 10 with command:
And I'm getting the following error:
It seems natural to have NTLM on windows enabled. Maybe I'm doing something wrong?
The text was updated successfully, but these errors were encountered: