WP_Http::browser_redirect_compatibility( string $location, array $headers, string|array $data, array $options, Requests_Response $original )
Match redirect behaviour to browser handling.
Description
Changes 302 redirects from POST to GET to match browser handling. Per RFC 7231, user agents can deviate from the strict reading of the specification for compatibility purposes.
Parameters
- $location
-
(string) (Required) URL to redirect to.
- $headers
-
(array) (Required) Headers for the redirect.
- $data
-
(string|array) (Required) Body to send with the request.
- $options
-
(array) (Required) Redirect request options.
- $original
-
(Requests_Response) (Required) Response object.
Source
File: wp-includes/class-http.php
public static function browser_redirect_compatibility( $location, $headers, $data, &$options, $original ) { // Browser compatibility. if ( 302 === $original->status_code ) { $options['type'] = Requests::GET; } }
Changelog
Version | Description |
---|---|
4.6.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_http/browser_redirect_compatibility