WordPress教程

wp_remote_post 发送 HTTP POST 请求并返回相应

阿里云

使用 POST 方法执行 HTTP 请求并返回其响应数据。

参数 数据类型 是否必需 描述 默认值
$url 字符串 请求 URL
$args 数字 请求参数 array()

返回值

响应数组,如果出错,返回 WP_Error 对象

也想出现在这里?联系我们
创客主机

使用示例

发送的 Post 数据应该在 body 中提供,body 不一定是数组,也可以是 XML 或 JSON 格式的字符串或其他可以通过 HTTP 协议发送的数据。

  1. $response = wp_remote_post( $url, array(
  2.     'timeout'     => 45,
  3.     'redirection' => 5,
  4.     'httpversion' => '1.0',
  5.     'blocking'    => true,
  6.     'headers'     => array(),
  7.     'body'        => array(
  8.         'username' => 'bob',
  9.         'password' => '1234xyz'
  10.     ),
  11.     'cookies'     => array()
  12.     )
  13. );
  14.  
  15. if ( is_wp_error( $response ) ) {
  16.     $error_message = $response->get_error_message();
  17.     echo "Something went wrong: $error_message";
  18. } else {
  19.     echo 'Response:<pre>';
  20.     print_r( $response );
  21.     echo '

';
}

在请求中添加基础授权数据

如果需要添加基础授权数据,参考下面的代码在 header 中添加即可。

  1. $response = wp_remote_post( $url, array(
  2.     'body'    => $data,
  3.     'headers' => array(
  4.         'Authorization' => 'Basic ' . base64_encode( $username . ':' . $password ),
  5.     ),
  6. ) );
wp_remote_get 发送 GET 请求到 URL 并返回数据 使用 GET 方法执行 HTTP 请求并返回其响应。 参数 数据类型 是否必需 描述 默认值 $url 字符串 […]
日期:2022/9/14 阅读:530阅读全文

wp_remote_post 发送 HTTP POST 请求并返回相应

已有 170 人购买
查看演示升级 VIP立刻购买

收藏
(0)

发表回复

热销模板

Ashade - 作品展示摄影相册WordPress汉化主题
LensNews

本站承接 WordPress / PbootCMS / DedeCMS 等
系统建站、仿站、开发、定制等业务!