CURLOPT_HTTPAUTH.3 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at https://curl.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" **************************************************************************
  22. .\"
  23. .TH CURLOPT_HTTPAUTH 3 "2 Aug 2014" "libcurl 7.38.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_HTTPAUTH \- HTTP server authentication methods to try
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_HTTPAUTH, long bitmask);
  30. .SH DESCRIPTION
  31. Pass a long as parameter, which is set to a bitmask, to tell libcurl which
  32. authentication method(s) you want it to use speaking to the remote server.
  33. The available bits are listed below. If more than one bit is set, libcurl will
  34. first query the site to see which authentication methods it supports and then
  35. pick the best one you allow it to use. For some methods, this will induce an
  36. extra network round-trip. Set the actual name and password with the
  37. \fICURLOPT_USERPWD(3)\fP option or with the \fICURLOPT_USERNAME(3)\fP and the
  38. \fICURLOPT_PASSWORD(3)\fP options.
  39. For authentication with a proxy, see \fICURLOPT_PROXYAUTH(3)\fP.
  40. .IP CURLAUTH_BASIC
  41. HTTP Basic authentication. This is the default choice, and the only method
  42. that is in wide-spread use and supported virtually everywhere. This sends
  43. the user name and password over the network in plain text, easily captured by
  44. others.
  45. .IP CURLAUTH_DIGEST
  46. HTTP Digest authentication. Digest authentication is defined in RFC2617 and
  47. is a more secure way to do authentication over public networks than the
  48. regular old-fashioned Basic method.
  49. .IP CURLAUTH_DIGEST_IE
  50. HTTP Digest authentication with an IE flavor. Digest authentication is
  51. defined in RFC2617 and is a more secure way to do authentication over public
  52. networks than the regular old-fashioned Basic method. The IE flavor is simply
  53. that libcurl will use a special "quirk" that IE is known to have used before
  54. version 7 and that some servers require the client to use.
  55. .IP CURLAUTH_BEARER
  56. HTTP Bearer token authentication, used primarily in OAuth 2.0 protocol.
  57. You can set the Bearer token to use with \fICURLOPT_XOAUTH2_BEARER(3)\fP.
  58. .IP CURLAUTH_NEGOTIATE
  59. HTTP Negotiate (SPNEGO) authentication. Negotiate authentication is defined
  60. in RFC 4559 and is the most secure way to perform authentication over HTTP.
  61. You need to build libcurl with a suitable GSS-API library or SSPI on Windows
  62. for this to work.
  63. .IP CURLAUTH_NTLM
  64. HTTP NTLM authentication. A proprietary protocol invented and used by
  65. Microsoft. It uses a challenge-response and hash concept similar to Digest, to
  66. prevent the password from being eavesdropped.
  67. You need to build libcurl with either OpenSSL, GnuTLS or NSS support for this
  68. option to work, or build libcurl on Windows with SSPI support.
  69. .IP CURLAUTH_NTLM_WB
  70. NTLM delegating to winbind helper. Authentication is performed by a separate
  71. binary application that is executed when needed. The name of the application
  72. is specified at compile time but is typically /usr/bin/ntlm_auth
  73. Note that libcurl will fork when necessary to run the winbind application and
  74. kill it when complete, calling waitpid() to await its exit when done. On POSIX
  75. operating systems, killing the process will cause a SIGCHLD signal to be
  76. raised (regardless of whether \fICURLOPT_NOSIGNAL(3)\fP is set), which must be
  77. handled intelligently by the application. In particular, the application must
  78. not unconditionally call wait() in its SIGCHLD signal handler to avoid being
  79. subject to a race condition. This behavior is subject to change in future
  80. versions of libcurl.
  81. .IP CURLAUTH_ANY
  82. This is a convenience macro that sets all bits and thus makes libcurl pick any
  83. it finds suitable. libcurl will automatically select the one it finds most
  84. secure.
  85. .IP CURLAUTH_ANYSAFE
  86. This is a convenience macro that sets all bits except Basic and thus makes
  87. libcurl pick any it finds suitable. libcurl will automatically select the one
  88. it finds most secure.
  89. .IP CURLAUTH_ONLY
  90. This is a meta symbol. OR this value together with a single specific auth
  91. value to force libcurl to probe for un-restricted auth and if not, only that
  92. single auth algorithm is acceptable.
  93. .IP CURLAUTH_AWS_SIGV4
  94. provides AWS V4 signature authentication on HTTPS header
  95. see \fICURLOPT_AWS_SIGV4(3)\fP.
  96. .SH DEFAULT
  97. CURLAUTH_BASIC
  98. .SH PROTOCOLS
  99. HTTP
  100. .SH EXAMPLE
  101. .nf
  102. CURL *curl = curl_easy_init();
  103. if(curl) {
  104. CURLcode ret;
  105. curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/");
  106. /* allow whatever auth the server speaks */
  107. curl_easy_setopt(curl, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
  108. curl_easy_setopt(curl, CURLOPT_USERPWD, "james:bond");
  109. ret = curl_easy_perform(curl);
  110. }
  111. .fi
  112. .SH AVAILABILITY
  113. Option Added in 7.10.6.
  114. CURLAUTH_DIGEST_IE was added in 7.19.3
  115. CURLAUTH_ONLY was added in 7.21.3
  116. CURLAUTH_NTLM_WB was added in 7.22.0
  117. CURLAUTH_BEARER was added in 7.61.0
  118. CURLAUTH_AWS_SIGV4 was added in 7.74.0
  119. .SH RETURN VALUE
  120. Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if not, or
  121. CURLE_NOT_BUILT_IN if the bitmask specified no supported authentication
  122. methods.
  123. .SH "SEE ALSO"
  124. .BR CURLOPT_PROXYAUTH "(3), " CURLOPT_USERPWD "(3), "