You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A JSON HTTP client library. This project also is the reference implementation for extending the [PHP Basic HTTP Client](https://github.com/markenwerk/php-basic-http-client).
10
+
A JSON HTTP client library. This project also is the reference implementation for extending the [PHP Basic HTTP Client](https://github.com/chroma-x/php-basic-http-client).
Required credentials are a *Certificate Authority Certificate*, a *Client Certificate* and the password that is used to decrypt the Client Certificate that get provided to the class constructor as arguments.
255
255
256
256
```{php}
257
-
use Markenwerk\BasicHttpClient\Request\Authentication\ClientCertificateAuthentication;
258
-
use Markenwerk\JsonHttpClient\Request\JsonRequest;
257
+
use ChromaX\BasicHttpClient\Request\Authentication\ClientCertificateAuthentication;
258
+
use ChromaX\JsonHttpClient\Request\JsonRequest;
259
259
260
260
// Configuring the authentication
261
261
$clientCertificateAuthentication = new ClientCertificateAuthentication(
If using the `JsonHttpClient` the response object is returned by the termination methods listed above. If directly using the JsonRequest instance, you can get the JsonResponse object via a getter.
279
279
280
280
```{php}
281
-
// Getting the response Markenwerk\BasicHttpClient\Response\JsonResponse object
281
+
// Getting the response ChromaX\BasicHttpClient\Response\JsonResponse object
282
282
$response = $request->getResponse();
283
283
284
284
// Reading the HTTP status code as integer; will return `200`
PHP JSON HTTP Client provides different exceptions – also provided by the PHP Common Exceptions project – for proper handling.
356
-
You can find more information about [PHP Common Exceptions at Github](https://github.com/markenwerk/php-common-exceptions).
356
+
You can find more information about [PHP Common Exceptions at Github](https://github.com/chroma-x/php-common-exceptions).
357
357
358
358
### Exceptions to be expected
359
359
360
360
In general you should expect that any setter method could thrown an `\InvalidArgumentException`. The following exceptions could get thrown while using PHP Basic HTTP Client.
361
361
362
-
-`Markenwerk\CommonException\IoException\FileNotFoundException` on configuring a `ClientCertificateAuthentication`instance
363
-
-`Markenwerk\CommonException\IoException\FileReadableException` on configuring a `ClientCertificateAuthentication`instance
364
-
-`Markenwerk\BasicHttpClient\Exception\HttpRequestAuthenticationException` on performing a request
365
-
-`Markenwerk\BasicHttpClient\Exception\HttpRequestException` on performing a request
366
-
-`Markenwerk\CommonException\NetworkException\ConnectionTimeoutException` on performing a request
367
-
-`Markenwerk\CommonException\NetworkException\CurlException` on performing a request
368
-
-`Markenwerk\BasicHttpClient\Exception\HttpResponseException` if parsing the JSON response body fails
362
+
-`ChromaX\CommonException\IoException\FileNotFoundException` on configuring a `ClientCertificateAuthentication`instance
363
+
-`ChromaX\CommonException\IoException\FileReadableException` on configuring a `ClientCertificateAuthentication`instance
364
+
-`ChromaX\BasicHttpClient\Exception\HttpRequestAuthenticationException` on performing a request
365
+
-`ChromaX\BasicHttpClient\Exception\HttpRequestException` on performing a request
366
+
-`ChromaX\CommonException\NetworkException\ConnectionTimeoutException` on performing a request
367
+
-`ChromaX\CommonException\NetworkException\CurlException` on performing a request
368
+
-`ChromaX\BasicHttpClient\Exception\HttpResponseException` if parsing the JSON response body fails
369
369
370
370
---
371
371
372
372
## Contribution
373
373
374
374
Contributing to our projects is always very appreciated.
375
-
**But: please follow the contribution guidelines written down in the [CONTRIBUTING.md](https://github.com/markenwerk/php-json-http-client/blob/master/CONTRIBUTING.md) document.**
375
+
**But: please follow the contribution guidelines written down in the [CONTRIBUTING.md](https://github.com/chroma-x/php-json-http-client/blob/master/CONTRIBUTING.md) document.**
0 commit comments