You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,3 +47,12 @@ You can pass custom curl options to the client with `$curlOptions` constructor p
47
47
-`CURLOPT_HEADER` - Headers are set in the request.
48
48
-`CURLOPT_WRITEFUNCTION` - The client uses this to get the response body.
49
49
-`CURLOPT_HEADERFUNCTION` - The client uses this to get the response headers.
50
+
51
+
## How do I implement NTLM authentication?
52
+
53
+
Microsoft is phasing out NTLM. For this reason, NTLM authentication won't be implemented in this library. However, it should be possible with the following curl options:
54
+
55
+
-`CURLOPT_HTTPAUTH` as `CURLAUTH_NTLM`
56
+
-`CURLOPT_USERPWD` with username and password, for example "username:password"
0 commit comments