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.
Contents
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
- wp_remote_request() : For more information on the response array format.
- WP_Http::request(): For default arguments information.
Parameters
-
$url
string Required -
URL to retrieve.
-
$args
array Optional -
Request arguments.
Default:
array()
Return
Source
File: wp-includes/http.php
.
View all references
function wp_safe_remote_get( $url, $args = array() ) {
$args['reject_unsafe_urls'] = true;
$http = _wp_http_get_object();
return $http->get( $url, $args );
}
Changelog
Version | Description |
---|---|
3.6.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
Retrieving and decoding json file –
Request with authorization parameters