# HttpClient
Http请求客户端连接池。
[TOC]
使用方式简单,步骤按照下面的来。
## 添加连接池
首先我们打开AppServer,添加连接池的声明。
```php
public function initAsynPools()
{
parent::initAsynPools();
$this->addAsynPool('GetIPAddress',new HttpClientPool($this->config,'http://int.dpool.sina.com.cn'));
$this->addAsynPool('WeiXinAPI',new HttpClientPool($this->config,'https://api.weixin.qq.com'));
}
```
我们通过继承initAsynPools的方法为我们的框架添加了2个http连接池。
HttpClientPool的构造函数中$config传框架的Config实例,$baseUrl请注意如果你要访问https://api.weixin.qq.com/1/2/34/5/6/abc 类似这样的网址,那么它的baseUrl为https://api.weixin.qq.com。
## 使用方法
我们打开我们需要进行访问的代码,以下我们假设在controller中进行访问。
```php
/**
* @var HttpClientPool
*/
protected $GetIPAddressHttpClient;
public function initialization($controller_name, $method_name)
{
parent::initialization($controller_name, $method_name);
$this->GetIPAddressHttpClient = get_instance()->getAsynPool('GetIPAddress');
}
```
我们在initialization初始化函数中获得这个HttpClientPool。
>连接池可以在__construct和initialization中初始化,区别在于initialization每次访问都会执行,连接池只需要初始化一次即可,推荐在__construct进行初始化。
接下来我们就可以在代码中书写我们需要访问的api了。
```php
public function http_ip_test()
{
$ip = $this->http_input->server('remote_addr');
$response = $this->GetIPAddressHttpClient->httpClient
->setQuery(['format' => 'json', 'ip' => $ip])
->coroutineExecute('/iplookup/iplookup.php');
}
```
## 对象属性
* $body 请求响应后服务器端返回的内容
* $statusCode 服务器端返回的Http状态码,如404、200、500等
* $set_cookie_headers 服务器端返回的原始COOKIE信息,包括了domain 和path项
* $headers Http请求头
* $cookies Http Cookie
## 异常错误码
某些情况下服务器端没有正常返回数据,底层会将$statusCode标记为负数。
* -1:连接超时,服务器未监听端口或网络丢失,可以读取$errCode获取具体的网络错误码
* -2:请求超时,服务器未在规定的timeout时间内返回response
* -3:客户端请求发出后,服务器强制切断连接
- SD3.X简介
- 捐赠SD项目
- VIP服务
- 基础篇
- 搭建环境
- 使用Composer安装/更新SD框架
- 启动命令
- 开发注意事项
- 框架配置
- 配置文件夹
- server.php
- ports.php
- business.php
- mysql.php
- redis.php
- timerTask.php
- log.php
- consul.php
- catCache.php
- client.php
- 自定义配置
- 框架入口
- MVC架构
- 加载器-Loader
- 控制器-Controller
- 模型-Model
- 视图-View
- 同步任务-Task
- 封装器
- Swoole编程指南-EOF协议
- Swoole编程指南-固定包头协议
- 封装器-Pack
- 路由器
- TCP相关
- 绑定UID
- Send系列
- Sub/Pub
- 获取服务器信息
- Http相关
- HttpInput
- HttpOutput
- 默认路由规则
- WebSocket相关
- 使用SSL
- 公共函数
- 进阶篇
- 内核优化
- 封装器路由器原理剖析
- 对象池
- 上下文-Context
- 中间件
- 进程管理
- 创建自定义进程
- 进程间RPC
- 自定义进程如何使用连接池
- 异步连接池
- Redis
- Mysql
- Mqtt
- HttpClient
- Client
- AMQP
- RPC
- 日志工具-GrayLog
- 微服务-Consul
- Consul基础
- 搭建Consul服务器
- SD中Consul配置
- 微服务
- 选举-Leader
- Consul动态配置定时任务
- 熔断与降级
- 集群-Cluster
- 高速缓存-CatCache
- 万物-Actor
- Actor原型
- Actor的创建
- Actor间的通讯
- 消息派发-EventDispatcher
- 延迟队列-TimerCallBack
- 协程
- 订阅与发布
- MQTT简易服务器
- AMQP异步任务调度
- 自定义命令-Console
- 调试工具Channel
- 特别注意事项
- 日常问题总结
- 实践案例
- 物联网自定义协议
- Actor在游戏的应用
- Mongodb以及一些同步扩展的使用
- 自定义进程使用MQTT客户端
- 开发者工具
- SDHelper