We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thank you very much for doing this! It is very useful.
Some servers require NTLM and Basic authentication. In this case, the Authorization: NTLM header must be sent before the Authorization: Basic header.
Please consider adding an authorization_type to the class so affected users can use something like this:
401c401 < curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_NTLM);
> curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_NTLM | CURLAUTH_BASIC);
The text was updated successfully, but these errors were encountered:
If you wouldn't mind submitting a quick commit/pull request I'd definitely welcome the change!
Sorry, something went wrong.
In order to use this class with microsoft live 365 I had to make this change also ie replace
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_NTLM); with curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_NTLM | CURLAUTH_BASIC);
No branches or pull requests
Thank you very much for doing this! It is very useful.
Some servers require NTLM and Basic authentication. In this case, the Authorization: NTLM header must be sent before the Authorization: Basic header.
Please consider adding an authorization_type to the class so affected users can use something like this:
401c401
< curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_NTLM);
> curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_NTLM | CURLAUTH_BASIC);
The text was updated successfully, but these errors were encountered: