向任意 URL 发出 HTTP 请求时,此函数非常理想。 URL 经过验证以避免重定向和请求伪造攻击。
function parameter
parameters | data type | Required or not | descriptive | default value |
---|---|---|---|---|
$url | string (computer science) | be | Request URL | not have |
$args | arrays | clogged | 请求参数 | array() |
Function Return Value
响应数组,如果出错,返回 WP_Error 对象
usage example
发送的Post数据应该在 body 中提供,body 不一定是数组,也可以是 XML 或 JSON 格式的字符串或其他可以通过 HTTP 协议发送的数据。
$response = wp_safe_remote_post( $url, array(
'timeout' => 45,
'redirection' => 5,
'httpversion' => '1.0',
'blocking' => true,
'headers' => array(),
'body' => array(
'username' => 'bob',
'password' => '1234xyz'
),
'cookies' => array()
)
);
if ( is_wp_error( $response ) ) {
$error_message = $response->get_error_message();
echo "Something went wrong: $error_message";
} else {
echo 'Response:<pre>';
print_r( $response );
echo '</pre>';
}
related function
wp_remote_post: 发送 HTTP POST 请求并获取返回数据
wp_remote_get: 用 GET 方法从 URL 中获取数据