wp_safe_remote_get( string $url, array $args = array() ): array|WP_Error

Retrieve the raw response from a safe HTTP request using the GET method.

Description

This function is ideal when the HTTP request is being made to an arbitrary URL. The URL is validated to avoid redirection and request forgery attacks.

See also

Parameters

$urlstringrequired
URL to retrieve.
$argsarrayoptional
Request arguments.
See WP_Http::request() for information on accepted arguments.

Default:array()

Return

array|WP_Error The response or WP_Error on failure.

Source

function wp_safe_remote_get( $url, $args = array() ) {
	$args['reject_unsafe_urls'] = true;
	$http                       = _wp_http_get_object();
	return $http->get( $url, $args );
}

Changelog

VersionDescription
3.6.0Introduced.

User Contributed Notes

  1. Skip to note 4 content

    Request with authorization parameters

    $response = wp_safe_remote_get( 
    	'https://endpoint-uri.com/example', 
    	array(
    		'timeout'     => 45,
    		'redirection' => 5,
    		'headers'     => array(
    			'Content-Type' => 'application/json; charset=utf-8',
    			'Authorization'      => 'Basic AUTH_KEY_HERE',
    		),
    		'cookies'     => array(),
    	),
    );

You must log in before being able to contribute a note or feedback.