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 compat
		if ( $original->status_code === 302 ) {
			$options['type'] = Requests::GET;
		}
	}

Changelog

Changelog
Version Description
WP-4.6.0 Introduced.