shewa12/wp-http-client
Composer 安装命令:
composer require shewa12/wp-http-client
包简介
A wrapper class for making HTTP requests using WordPress wp_remote_request API's.
README 文档
README
The wp-http-client is a PHP composer package to make HTTP requests using the WordPress API. It provides methods for making GET, POST, PUT, and DELETE requests with ease. This class is especially useful for developers who are working on WordPress plugins or themes and need to interact with external APIs or remote services.
Installation
composer require shewa12/wp-http-client
Instantiating the HTTPClient Class
To use the wp-http-client, create an instance of it as follows:
use Shewa\WP_HTTP_Client\HTTPClient; // Instantiate the HTTPClient class $http_client = new HTTPClient();
Usage
request() method is responsible for performing http requests. This method accept four params. These are:
- $request, required. Which request need to make. Supported values: get, post, put, patch, delete.
- $url, required. Where to make request
- $data required if request is not get or delete
- $args optional, pass to override default values
Example of get request:
$url = 'https://api.example.com/data'; $response = $http_client->request( 'get', $url ); if ( ! is_wp_error( $response ) ) { // Process the response data print_r( $response ); } else { // Handle the error echo 'Error: ' . $response->get_error_message(); }
Example of post request:
$url = 'https://api.example.com/data'; $data = ['name' => 'John']; $response = $http_client->request( 'post', $url, $data ); if ( ! is_wp_error( $response ) ) { // Process the response data print_r( $response ); } else { // Handle the error echo 'Error: ' . $response->get_error_message(); }
Response
Response will be either WP_Error or Array.
Successful response will return array like below:
$response = array( 'headers' => [], 'code' => 200, 'message' => 'OK', 'body' => [], );
Methods
- REQUEST
- GET
- POST
- PUT
- PATCH
- DELETE
Supported HTTP Arguments & Default Values
$defaults = array( 'method' => 'GET', 'timeout' => 5, 'redirection' => 5, 'httpversion' => 1.0, 'user-agent' => 'WordPress/' . get_bloginfo( 'version' ) . '; ' . get_bloginfo( 'url' )', 'reject_unsafe_urls' => false, 'blocking' => true, 'headers' => array(), 'cookies' => array(), 'body' => null, 'compress' => false, 'decompress' => true, 'sslverify' => true, 'sslcertificates' => ABSPATH . WPINC . '/certificates/ca-bundle.crt', 'stream' => false, 'filename' => null, 'limit_response_size' => null, );
shewa12/wp-http-client 适用场景与选型建议
shewa12/wp-http-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15 次下载、GitHub Stars 达 3, 最近一次更新时间为 2023 年 08 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「http_client」 「wp_remote_request」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 shewa12/wp-http-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 shewa12/wp-http-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 shewa12/wp-http-client 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
统计信息
- 总下载量: 15
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2023-08-06