mirror of
https://github.com/curl/curl.git
synced 2026-08-05 03:46:14 +03:00
Makes curl follow redirects an act on the response code and change a
custom method accordingly, contrary to --location.
Potential future command line to send QUERY and following a redirect
according to the status code:
curl -d "request-body" -X QUERY --follow https://example.com
add test 794,796,797
Assisted-by: Daniel Böhmer <post@daniel-boehmer.de>
Closes #16543
25 lines
715 B
Markdown
25 lines
715 B
Markdown
---
|
|
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
SPDX-License-Identifier: curl
|
|
Long: follow
|
|
Help: Follow redirects per spec
|
|
Category: http
|
|
Added: 8.16.0
|
|
Multi: boolean
|
|
See-also:
|
|
- request
|
|
- location
|
|
Example:
|
|
- -X POST --follow $URL
|
|
---
|
|
|
|
# `--follow`
|
|
|
|
Instructs curl to follow HTTP redirects and to do the custom request method
|
|
set with --request when following redirects as the HTTP specification says.
|
|
|
|
The method string set with --request is used in subsequent requests for the
|
|
status codes 307 or 308, but may be reset to GET for 301, 302 and 303.
|
|
|
|
This is subtly different than --location, as that option always set the custom
|
|
method in all subsequent requests independent of response code.
|