CURLOPT_URL.3 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2014, 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 http://curl.haxx.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_URL 3 "17 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_URL \- provide the URL to use in the reqest
  26. .SH SYNOPSIS
  27. #include <curl/curl.h>
  28. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_URL, char *URL);
  29. .SH DESCRIPTION
  30. Pass in a pointer to the \fIURL\fP to work with. The parameter should be a
  31. char * to a zero terminated string which must be URL-encoded in the following
  32. format:
  33. scheme://host:port/path
  34. For a greater explanation of the format please see RFC3986.
  35. libcurl doesn't validate the syntax or use this variable until the transfer is
  36. issued. Even if you set a crazy value here, \fIcurl_easy_setopt(3)\fP will
  37. still return \fICURLE_OK\fP.
  38. If the given URL lacks the scheme (such as "http://" or "ftp://" etc) then
  39. libcurl will attempt to resolve the protocol based on one of the following
  40. given host names: HTTP, FTP, DICT, LDAP, IMAP, POP3 or SMTP
  41. Should the protocol, either that specified by the scheme or deduced by libcurl
  42. from the host name, not be supported by libcurl then
  43. \fICURLE_UNSUPPORTED_PROTOCOL\fP will be returned from either the
  44. \fIcurl_easy_perform(3)\fP or \fIcurl_multi_perform(3)\fP functions when you
  45. call them. Use \fIcurl_version_info(3)\fP for detailed information of which
  46. protocols are supported by the build of libcurl you are using.
  47. \fICURLOPT_PROTOCOLS(3)\fP can be used to limit what protocols libcurl will
  48. use for this transfer, independent of what libcurl has been compiled to
  49. support. That may be useful if you accept the URL from an external source and
  50. want to limit the accessibility.
  51. \fICURLOPT_URL(3)\fP is the only option that \fBmust\fP be set before a
  52. transfer is started.
  53. The host part of the URL contains the address of the server that you want to
  54. connect to. This can be the fully qualified domain name of the server, the
  55. local network name of the machine on your network or the IP address of the
  56. server or machine represented by either an IPv4 or IPv6 address. For example:
  57. http://www.example.com/
  58. http://hostname/
  59. http://192.168.0.1/
  60. http://[2001:1890:1112:1::20]/
  61. It is also possible to specify the user name, password and any supported login
  62. options as part of the host, for the following protocols, when connecting to
  63. servers that require authentication:
  64. http://user:password@www.example.com
  65. ftp://user:password@ftp.example.com
  66. imap://user:password;options@mail.example.com
  67. pop3://user:password;options@mail.example.com
  68. smtp://user:password;options@mail.example.com
  69. At present only IMAP, POP3 and SMTP support login options as part of the host.
  70. For more information about the login options in URL syntax please see RFC2384,
  71. RFC5092 and IETF draft draft-earhart-url-smtp-00.txt (Added in 7.31.0).
  72. The port is optional and when not specified libcurl will use the default port
  73. based on the determined or specified protocol: 80 for HTTP, 21 for FTP and 25
  74. for SMTP, etc. The following examples show how to specify the port:
  75. http://www.example.com:8080/ - This will connect to a web server using port
  76. 8080 rather than 80.
  77. smtp://mail.example.com:587/ - This will connect to a SMTP server on the
  78. alternative mail port.
  79. The path part of the URL is protocol specific and whilst some examples are
  80. given below this list is not conclusive:
  81. .IP HTTP
  82. The path part of a HTTP request specifies the file to retrieve and from what
  83. directory. If the directory is not specified then the web server's root
  84. directory is used. If the file is omitted then the default document will be
  85. retrieved for either the directory specified or the root directory. The exact
  86. resource returned for each URL is entirely dependent on the server's
  87. configuration.
  88. http://www.example.com - This gets the main page from the web server.
  89. http://www.example.com/index.html - This returns the main page by explicitly
  90. requesting it.
  91. http://www.example.com/contactus/ - This returns the default document from
  92. the contactus directory.
  93. .IP FTP
  94. The path part of an FTP request specifies the file to retrieve and from what
  95. directory. If the file part is omitted then libcurl downloads the directory
  96. listing for the directory specified. If the directory is omitted then
  97. the directory listing for the root / home directory will be returned.
  98. ftp://ftp.example.com - This retrieves the directory listing for the root
  99. directory.
  100. ftp://ftp.example.com/readme.txt - This downloads the file readme.txt from the
  101. root directory.
  102. ftp://ftp.example.com/libcurl/readme.txt - This downloads readme.txt from the
  103. libcurl directory.
  104. ftp://user:password@ftp.example.com/readme.txt - This retrieves the readme.txt
  105. file from the user's home directory. When a username and password is
  106. specified, everything that is specified in the path part is relative to the
  107. user's home directory. To retrieve files from the root directory or a
  108. directory underneath the root directory then the absolute path must be
  109. specified by prepending an additional forward slash to the beginning of the
  110. path.
  111. ftp://user:password@ftp.example.com//readme.txt - This retrieves the readme.txt
  112. from the root directory when logging in as a specified user.
  113. .IP SMTP
  114. The path part of a SMTP request specifies the host name to present during
  115. communication with the mail server. If the path is omitted then libcurl will
  116. attempt to resolve the local computer's host name. However, this may not
  117. return the fully qualified domain name that is required by some mail servers
  118. and specifying this path allows you to set an alternative name, such as
  119. your machine's fully qualified domain name, which you might have obtained
  120. from an external function such as gethostname or getaddrinfo.
  121. smtp://mail.example.com - This connects to the mail server at example.com and
  122. sends your local computer's host name in the HELO / EHLO command.
  123. smtp://mail.example.com/client.example.com - This will send client.example.com in
  124. the HELO / EHLO command to the mail server at example.com.
  125. .IP POP3
  126. The path part of a POP3 request specifies the message ID to retrieve. If the
  127. ID is not specified then a list of waiting messages is returned instead.
  128. pop3://user:password@mail.example.com - This lists the available messages for
  129. the user
  130. pop3://user:password@mail.example.com/1 - This retrieves the first message for
  131. the user
  132. .IP IMAP
  133. The path part of an IMAP request not only specifies the mailbox to list (Added
  134. in 7.30.0) or select, but can also be used to check the UIDVALIDITY of the
  135. mailbox, to specify the UID, SECTION (Added in 7.30.0) and PARTIAL octets
  136. (Added in 7.37.0) of the message to fetch and to specify what messages to
  137. search for (Added in 7.37.0).
  138. imap://user:password@mail.example.com - Performs a top level folder list
  139. imap://user:password@mail.example.com/INBOX - Performs a folder list on the
  140. user's inbox
  141. imap://user:password@mail.example.com/INBOX/;UID=1 - Selects the user's inbox
  142. and fetches message 1
  143. imap://user:password@mail.example.com/INBOX;UIDVALIDITY=50/;UID=2 - Selects
  144. the user's inbox, checks the UIDVALIDITY of the mailbox is 50 and fetches
  145. message 2 if it is
  146. imap://user:password@mail.example.com/INBOX/;UID=3/;SECTION=TEXT - Selects the
  147. user's inbox and fetches the text portion of message 3
  148. imap://user:password@mail.example.com/INBOX/;UID=4/;PARTIAL=0.1024 - Selects
  149. the user's inbox and fetches the first 1024 octets of message 4
  150. imap://user:password@mail.example.com/INBOX?NEW - Selects the user's inbox and
  151. checks for NEW messages
  152. imap://user:password@mail.example.com/INBOX?SUBJECT%20shadows - Selects the
  153. user's inbox and searches for messages containing "shadows" in the subject
  154. line
  155. For more information about the individual components of an IMAP URL please
  156. see RFC5092.
  157. .IP SCP
  158. The path part of a SCP request specifies the file to retrieve and from what
  159. directory. The file part may not be omitted. The file is taken as an absolute
  160. path from the root directory on the server. To specify a path relative to the
  161. user's home directory on the server, prepend ~/ to the path portion. If the
  162. user name is not embedded in the URL, it can be set with the
  163. \fICURLOPT_USERPWD(3)\fP or \fICURLOPT_USERNAME(3)\fP option.
  164. scp://user@example.com/etc/issue - This specifies the file /etc/issue
  165. scp://example.com/~/my-file - This specifies the file my-file in the
  166. user's home directory on the server
  167. .IP SFTP
  168. The path part of a SFTP request specifies the file to retrieve and from what
  169. directory. If the file part is omitted then libcurl downloads the directory
  170. listing for the directory specified. If the path ends in a / then a directory
  171. listing is returned instead of a file. If the path is omitted entirely then
  172. the directory listing for the root / home directory will be returned. If the
  173. user name is not embedded in the URL, it can be set with the
  174. \fICURLOPT_USERPWD(3)\fP or \fICURLOPT_USERNAME(3)\fP option.
  175. sftp://user:password@example.com/etc/issue - This specifies the file
  176. /etc/issue
  177. sftp://user@example.com/~/my-file - This specifies the file my-file in the
  178. user's home directory
  179. sftp://ssh.example.com/~/Documents/ - This requests a directory listing
  180. of the Documents directory under the user's home directory
  181. .IP LDAP
  182. The path part of a LDAP request can be used to specify the: Distinguished
  183. Name, Attributes, Scope, Filter and Extension for a LDAP search. Each field
  184. is separated by a question mark and when that field is not required an empty
  185. string with the question mark separator should be included.
  186. ldap://ldap.example.com/o=My%20Organisation - This will perform a LDAP search
  187. with the DN as My Organisation.
  188. ldap://ldap.example.com/o=My%20Organisation?postalAddress - This will perform
  189. the same search but will only return postalAddress attributes.
  190. ldap://ldap.example.com/?rootDomainNamingContext - This specifies an empty DN
  191. and requests information about the rootDomainNamingContext attribute for an
  192. Active Directory server.
  193. For more information about the individual components of a LDAP URL please
  194. see RFC4516.
  195. .IP RTMP
  196. There's no official URL spec for RTMP so libcurl uses the URL syntax supported
  197. by the underlying librtmp library. It has a syntax where it wants a
  198. traditional URL, followed by a space and a series of space-separated
  199. name=value pairs.
  200. While space is not typically a "legal" letter, libcurl accepts them. When a
  201. user wants to pass in a '#' (hash) character it will be treated as a fragment
  202. and get cut off by libcurl if provided literally. You will instead have to
  203. escape it by providing it as backslash and its ASCII value in hexadecimal:
  204. "\\23".
  205. .SH DEFAULT
  206. There is no default URL. If this option isn't set, no transfer can be
  207. performed.
  208. .SH PROTOCOLS
  209. All
  210. .SH EXAMPLE
  211. .nf
  212. curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
  213. .SH AVAILABILITY
  214. POP3 and SMTP added in 7.31.0
  215. .SH RETURN VALUE
  216. Returns CURLE_OK on success or
  217. CURLE_OUT_OF_MEMORY if there was insufficient heap space.
  218. .SH "SEE ALSO"
  219. .BR CURLOPT_VERBOSE "(3), " CURLOPT_PROTOCOLS "(3), "
  220. .BR curl_easy_perform "(3)"