http_api_debug
http_api_debug
Appears in: wordpress-4.0, wordpress-4.4, wordpress-4.8, wordpress-4.9, wordpress-4.9.4, wordpress-4.9.5, wordpress-4.9.6, wordpress-4.9.7, wordpress-4.9.8, wordpress-5.0, wordpress-5.0.1, wordpress-5.0.2, wordpress-5.0.3, wordpress-5.1, wordpress-5.1.1, wordpress-5.2, wordpress-5.2.1, wordpress-5.2.2, wordpress-5.2.3, wordpress-5.2.4, wordpress-5.3, wordpress-5.3.1, wordpress-5.3.2, wordpress-5.4, wordpress-5.4.1, wordpress-5.4.2, wordpress-5.5, wordpress-5.5.1, wordpress-5.5.2, wordpress-5.5.3, wordpress-5.6, wordpress-5.6.1, wordpress-5.6.2, wordpress-5.7, wordpress-5.7.1, wordpress-5.7.2, wordpress-5.8, wordpress-5.8.1, wordpress-5.8.2, wordpress-5.8.3, wordpress-5.9, wordpress-5.9.1, wordpress-5.9.2, wordpress-5.9.3, wordpress-6.0, wordpress-6.0.1, wordpress-6.0.2, wordpress-6.0.3, wordpress-6.1, wordpress-6.1.1, wordpress-6.2, wordpress-6.2.1, wordpress-6.2.2, wordpress-6.3, wordpress-6.3.1, wordpress-6.3.2, wordpress-6.4, wordpress-6.4.1, wordpress-6.4.2, wordpress-6.4.3, wordpress-6.5, wordpress-6.5.2, wordpress-6.5.3, wordpress-6.5.4, wordpress-6.5.5, wordpress-6.6, wordpress-6.6.1, wordpress-6.6.2, wordpress-6.7, wordpress-6.7.1, wordpress-6.7.2
Hook Type: action
Displaying hooks found in version: wordpress-6.7.2do_action('http_api_debug') is found 5 times:
- /wp-includes/class-wp-http.php line 292289290291292293294295296297298
if
(
empty
(
$url
) ||
empty
(
$parsed_url
[
'scheme'
] ) ) {
$response
=
new
WP_Error(
'http_request_failed'
, __(
'A valid URL was not provided.'
) );
/** This action is documented in wp-includes/class-wp-http.php */
do_action(
'http_api_debug'
,
$response
,
'response'
,
'WpOrg\Requests\Requests'
,
$parsed_args
,
$url
);
return
$response
;
}
if
(
$this
->block_request(
$url
) ) {
$response
=
new
WP_Error(
'http_request_not_executed'
, __(
'User has blocked requests through HTTP.'
) );
/** This action is documented in wp-includes/class-wp-http.php */
- /wp-includes/class-wp-http.php line 299296297298299300301302303304305
if
(
$this
->block_request(
$url
) ) {
$response
=
new
WP_Error(
'http_request_not_executed'
, __(
'User has blocked requests through HTTP.'
) );
/** This action is documented in wp-includes/class-wp-http.php */
do_action(
'http_api_debug'
,
$response
,
'response'
,
'WpOrg\Requests\Requests'
,
$parsed_args
,
$url
);
return
$response
;
}
// If we are streaming to a file but no filename was given drop it in the WP temp dir
// and pick its name using the basename of the $url.
if
(
$parsed_args
[
'stream'
] ) {
- /wp-includes/class-wp-http.php line 316312313314315316317318319320321322
$parsed_args
[
'blocking'
] = true;
if
( ! wp_is_writable( dirname(
$parsed_args
[
'filename'
] ) ) ) {
$response
=
new
WP_Error(
'http_request_failed'
, __(
'Destination directory for file streaming does not exist or is not writable.'
) );
/** This action is documented in wp-includes/class-wp-http.php */
do_action(
'http_api_debug'
,
$response
,
'response'
,
'WpOrg\Requests\Requests'
,
$parsed_args
,
$url
);
return
$response
;
}
}
if
(
is_null
(
$parsed_args
[
'headers'
] ) ) {
$parsed_args
[
'headers'
] =
array
();
- /wp-includes/class-wp-http.php line 435431432433434435436437438439440441
* @param string
$class
HTTP transport used.
* @param
array
$parsed_args
HTTP request arguments.
* @param string
$url
The request URL.
*/
do_action(
'http_api_debug'
,
$response
,
'response'
,
'WpOrg\Requests\Requests'
,
$parsed_args
,
$url
);
if
( is_wp_error(
$response
) ) {
return
$response
;
}
if
( !
$parsed_args
[
'blocking'
] ) {
return
array
(
- /wp-includes/class-wp-http.php line 608605606607608609610611612613614
$response
=
$transports
[
$class
]->request(
$url
,
$args
);
/** This action is documented in wp-includes/class-wp-http.php */
do_action(
'http_api_debug'
,
$response
,
'response'
,
$class
,
$args
,
$url
);
if
( is_wp_error(
$response
) ) {
return
$response
;
}
/** This filter is documented in wp-includes/class-wp-http.php */