http-client icon indicating copy to clipboard operation
http-client copied to clipboard

Asynchronous http client for PHP based on workerman.

Results 8 http-client issues
Sort by recently updated
recently updated
newest added

请问请求如何使用代理服务器?

支持 proxy功能, 需要 通过 [workerman AsyncTcpConnection](https://github.com/walkor/workerman/pull/1029). PR

看了下源码,MS没有方法设置,忽略 SSL错误

跟有的框架不兼容了 guzzle/psr 2.x的 "psr/http-message": "^1.1 || ^2.0" workerman/psr 的 "psr/http-message": "~1.0"

I decided use http client in my worker. **Server part works on workerman Worker with one thread ( $worker->count = 1; ) Business logic requires it.** Part of http client...

服务器A: ``` $response = [ "hello": "123456" ]; ``` $http->request($host,$response)->getBody()->getContents(); 接收端B: $request->only(['hello']); ``` "data": { "hello": "123456" } ``` 这是发送端 还是接收端 没处理

Hi @walkor Is it possible to continuously read a live video stream into a circular buffer? Thanks