Английская Википедия:CURL

Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску

Шаблон:Short description Шаблон:Other uses Шаблон:Confused Шаблон:Lowercase title Шаблон:Infobox software

cURL (pronounced like "curl",[1] Шаблон:IPAc-en) is a computer software project providing a library (libcurl) and command-line tool (curl) for transferring data using various network protocols. The name stands for "Client for URL".[2]

History

curl was first released in 1996.[3] It was originally named httpget and then became urlget before adopting the current name of curl[4][5] The original author and lead developer is the Swedish developer Daniel Stenberg, who created curl because he wanted to automate the fetching of currency exchange rates for IRC users.[6]

libcurl

libcurl is a free client-side URL transfer library,[7] supporting cookies, DICT, FTP, FTPS, Gopher, HTTP/1[8] (with HTTP/2 and HTTP/3 support), HTTP POST, HTTP PUT, HTTP proxy tunneling, HTTPS, IMAP, Kerberos, LDAP, MQTT, POP3, RTSP, RTMP, SCP, SMTP, and SMB. The library supports the file URI scheme, SFTP, Telnet, TFTP, file transfer resume, FTP uploading, HTTP form-based upload, HTTPS certificates, LDAPS, proxies, and user-plus-password authentication.[9]

The libcurl library is portable. It builds and works identically on many platforms, including AIX, AmigaOS, Android,Шаблон:Citation needed BeOS, BlackBerry Tablet OS and BlackBerry 10,[10] OpenVMS, Darwin, DOS, FreeBSD, HP-UX, HURD, iOS, IRIX, Linux, macOS, NetBSD, NetWare, OpenBSD, OS/2, QNX Neutrino, RISC OS, Solaris, Symbian, Tru64, Ultrix, UnixWare, and Microsoft Windows.[11]

The libcurl library is free, thread-safe and IPv6 compatible. Bindings are available for more than 50 languages, including C/C++, Java, Julia (is bundled with), PHP and Python.[12]

The libcurl library supports GnuTLS, mbed TLS, NSS, gskit on IBM i, SChannel on Windows, Secure Transport on macOS and iOS, SSL/TLS through OpenSSL, BoringSSL, libreSSL, AmiSSL, wolfSSL, BearSSL and rustls.[13]

curl

curl is a command-line tool for getting or sending data including files using URL syntax. Since curl uses libcurl, it supports every protocol libcurl supports.[9]

curl supports HTTPS and performs SSL certificate verification by default when a secure protocol is specified such as HTTPS. When curl connects to a remote server via HTTPS, it will obtain the remote server certificate, then check against its CA certificate store the validity of the remote server to ensure the remote server is the one it claims to be. Some curl packages are bundled with CA certificate store file. There are several options to specify a CA certificate such as Шаблон:Mono and Шаблон:Mono. The Шаблон:Mono option can be used to specify the location of the CA certificate store file. In the Windows platform, if a CA certificate file is not specified, curl will look for a CA certificate file name “curl-ca-bundle.crt” in the following order:

  1. Directory where the curl program is located.
  2. Current working directory.
  3. Windows system directory.
  4. Windows directory.
  5. Directories specified in the %PATH% environment variables.[14]

curl will return an error message if the remote server is using a self-signed certificate, or if the remote server certificate is not signed by a CA listed in the CA cert file. Шаблон:Mono or Шаблон:Mono option can be used to skip certificate verification. Alternatively, if the remote server is trusted, the remote server CA certificate can be added to the CA certificate store file.

Examples

Basic use of curl involves simply typing Шаблон:Mono at the command line, followed by the URL of the output to retrieve:

$ curl www.example.com

curl defaults to displaying the output it retrieves to the standard output specified on the system (usually the terminal window). So running the command above would, on most systems, display the www.example.com source-code in the terminal window. The -o flag can be used to store the output in a file instead:

$ curl -o example.html www.example.com

More options that change the tool's behavior are available.

See also

Шаблон:Portal

  • curl-loader – an open-source testing tool based on curl
  • libwww – an early library that comes with a command line interface
  • PowerShell – the iwr (Invoke-WebRequest) Windows PowerShell had functionality similar to curl; class Web-client too.[15]
  • Web crawler – an internet bot that can crawl the web
  • Wget – similar command-line tool with no associated library but capable of recursive downloading

References

Шаблон:Reflist

External links

Шаблон:Wikibooks

Шаблон:Download managers Шаблон:Windows commands

  1. Ошибка цитирования Неверный тег <ref>; для сносок FAQ, haxx.se не указан текст
  2. Ошибка цитирования Неверный тег <ref>; для сносок Stenberg, haxx.se, 2018 не указан текст
  3. Шаблон:Cite web
  4. Ошибка цитирования Неверный тег <ref>; для сносок cURL changelog, 2020 не указан текст
  5. Ошибка цитирования Неверный тег <ref>; для сносок Stenberg, Haxx SE, 2020 не указан текст
  6. Ошибка цитирования Неверный тег <ref>; для сносок history не указан текст
  7. Ошибка цитирования Неверный тег <ref>; для сносок BlueOne не указан текст
  8. Ошибка цитирования Неверный тег <ref>; для сносок Stenberg, GitHub, 2019 не указан текст
  9. 9,0 9,1 Шаблон:Cite web
  10. Ошибка цитирования Неверный тег <ref>; для сносок Blackberry, GitHub не указан текст
  11. Ошибка цитирования Неверный тег <ref>; для сносок Microsoft Techcommunity не указан текст
  12. Шаблон:Cite web
  13. Шаблон:Cite web
  14. Ошибка цитирования Неверный тег <ref>; для сносок SSL, haxx.se не указан текст
  15. Ошибка цитирования Неверный тег <ref>; для сносок Ryan, Ryandel, 2018 не указан текст