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

Common HTTP Client implementations and tools for HTTPlug

Results 18 client-common issues
Sort by recently updated
recently updated
newest added

| Q | A | | --- | --- | | Bug? | no | | New Feature? | yes | This is a feature request for adding a soap...

**PHP version**: 7.4.16 **Description** I'm trying to fetch an article from https://www.nature.com/articles/d41586-019-01307-2. The article ist behind several redirects: ``` $ curl --location -D- -v https://www.nature.com/articles/d41586-019-01307-2 > GET /articles/d41586-019-01307-2 HTTP/2 <...

**Description** If the initial request method is `POST` and the server responds with a `Location` header, the `RedirectPlugin` is configured to follow the redirect with a `GET` request. However, the...

**PHP version**: 7.4.4 **Description** Our test suite is randomly failing in our integration tests since we introduced HTTPlug. This is because AddPathPlugin doesn't activate sometimes. Looks like `spl_object_hash` is having...

reading https://medium.com/@timoschinkel/implementing-psr-18-and-extending-it-with-middleware-b33eeceb2753 it occured to me that our PluginClient essentially mimiks PSR-15. should we migrate our plugins to middleware, or is there value in having them as they are?

Having a client that accept multi http clients, when it receives a request it will duplicate the call to all the underlying client and return a BatchResponse (like the batchclient)...

pending

| Q | A | ------------ | --- | Bug? | yes | New Feature? | no | Version | 1.8 #### Actual Behavior RetryPlugin used in an async request...

| Q | A | ------------ | --- | Bug? | no | New Feature? | yes #### Actual Behavior Actually all plugin dealing with body check if the stream...

| Q | A | | --- | --- | | Bug? | no | | New Feature? | no | | Version |

In MessageFormatters we had the issue of reading from streams which might not be readable. Though that was meant for Response objects, what's the situation in case of Requests. Some...

question