request.d 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Long: request
  2. Short: X
  3. Arg: <command>
  4. Help: Specify request command to use
  5. Category: connection
  6. Example: -X "DELETE" $URL
  7. Example: -X NLST ftp://example.com/
  8. Added: 6.0
  9. ---
  10. (HTTP) Specifies a custom request method to use when communicating with the
  11. HTTP server. The specified request method will be used instead of the method
  12. otherwise used (which defaults to GET). Read the HTTP 1.1 specification for
  13. details and explanations. Common additional HTTP requests include PUT and
  14. DELETE, but related technologies like WebDAV offers PROPFIND, COPY, MOVE and
  15. more.
  16. Normally you do not need this option. All sorts of GET, HEAD, POST and PUT
  17. requests are rather invoked by using dedicated command line options.
  18. This option only changes the actual word used in the HTTP request, it does not
  19. alter the way curl behaves. So for example if you want to make a proper HEAD
  20. request, using -X HEAD will not suffice. You need to use the --head option.
  21. The method string you set with --request will be used for all requests, which
  22. if you for example use --location may cause unintended side-effects when curl
  23. does not change request method according to the HTTP 30x response codes - and
  24. similar.
  25. (FTP)
  26. Specifies a custom FTP command to use instead of LIST when doing file lists
  27. with FTP.
  28. (POP3)
  29. Specifies a custom POP3 command to use instead of LIST or RETR.
  30. (Added in 7.26.0)
  31. (IMAP)
  32. Specifies a custom IMAP command to use instead of LIST. (Added in 7.30.0)
  33. (SMTP)
  34. Specifies a custom SMTP command to use instead of HELP or VRFY. (Added in 7.34.0)
  35. If this option is used several times, the last one will be used.