Skip to content

Commit b147eba

Browse files
author
Martin Brecht-Precht
committed
Updated readme.
1 parent 7a70eec commit b147eba

File tree

2 files changed

+73
-8
lines changed

2 files changed

+73
-8
lines changed

README.md

+66-8
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,25 @@ The same mechanic is offered to perform `PUT` and `PATCH` requests wich all are
129129

130130
The following example shows the usage with a more detailed configuration.
131131

132-
#### Configuring a Transport instance
132+
#### Configuring a HTTP Transport instance
133+
134+
```{php}
135+
use BasicHttpClient\Request\Transport\HttpTransport;
136+
137+
// Configuring a Transport instance
138+
$transport = new HttpTransport();
139+
$transport
140+
->setHttpVersion(HttpsTransport::HTTP_VERSION_1_1)
141+
->setTimeout(5)
142+
->setReuseConnection(true)
143+
->setAllowCaching(true)
144+
->setFollowRedirects(true)
145+
->setMaxRedirects(10);
146+
```
147+
148+
#### Configuring a HTTPS Transport instance
133149

134150
```{php}
135-
use BasicHttpClient\Request\Authentication\BasicAuthentication;
136-
use BasicHttpClient\Request\Message\Body\Body;
137-
use BasicHttpClient\Request\Message\Cookie\Cookie;
138-
use BasicHttpClient\Request\Message\Header\Header;
139-
use BasicHttpClient\Request\Message\Message;
140-
use BasicHttpClient\Request\Request;
141151
use BasicHttpClient\Request\Transport\HttpsTransport;
142152
143153
// Configuring a Transport instance
@@ -155,6 +165,11 @@ $transport
155165
#### Configuring a Message instance with Body
156166

157167
```{php}
168+
use BasicHttpClient\Request\Message\Body\Body;
169+
use BasicHttpClient\Request\Message\Cookie\Cookie;
170+
use BasicHttpClient\Request\Message\Header\Header;
171+
use BasicHttpClient\Request\Message\Message;
172+
158173
// Configuring a message Body instance
159174
$messageBody = new Body();
160175
$messageBody->setBodyText(
@@ -199,9 +214,12 @@ $message->addHeader(new Header('Custom-Header', array('CustomHeaderValue')));
199214
$message->addAdditionalHeader(new Header('Custom-Header', array('AnotherCustomHeaderValue')));
200215
```
201216

202-
#### Configuring and submitting a Request instance
217+
#### Configuring a Request instance and perform the HTTP request
203218

204219
```{php}
220+
use BasicHttpClient\Request\Authentication\BasicAuthentication;
221+
use BasicHttpClient\Request\Request;
222+
205223
// Configuring and performing a Request
206224
$request = new Request();
207225
$response = $request
@@ -239,6 +257,46 @@ Content-Length: 102
239257
{"paramName1":"paramValue1","paramName2":"paramValue2","paramName3":{"key1":"value1","key2":"value2"}}
240258
```
241259

260+
### Usage of authentication methods
261+
262+
You can add one or more Authentication instances to every Request instance. At the moment this project provides classes for [HTTP Basic Authentication](https://en.wikipedia.org/wiki/Basic_access_authentication) and [SSL Client Certificate Authentication](https://en.wikipedia.org/wiki/Transport_Layer_Security#Client-authenticated_TLS_handshake).
263+
264+
#### HTTP Basic Authentication
265+
266+
Required credentials are a *username* and a *password* that get provided to the class constructor as arguments.
267+
268+
```{php}
269+
use BasicHttpClient\Request\Authentication\BasicAuthentication;
270+
use BasicHttpClient\Request\Request;
271+
272+
// Configuring the authentication
273+
$basicAuthentication = new BasicAuthentication('username', 'password');
274+
275+
// Adding the authentication instance to the Request
276+
$request = new Request();
277+
$response = $request->addAuthentication($basicAuthentication);
278+
```
279+
280+
#### SSL Client Certificate Authentication
281+
282+
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.
283+
284+
```{php}
285+
use BasicHttpClient\Request\Authentication\ClientCertificateAuthentication;
286+
use BasicHttpClient\Request\Request;
287+
288+
// Configuring the authentication
289+
$clientCertificateAuthentication = new ClientCertificateAuthentication(
290+
'/var/www/project/clientCert/ca.crt',
291+
'/var/www/project/clientCert/client.crt',
292+
'clientCertPassword'
293+
);
294+
295+
// Adding the authentication instance to the Request
296+
$request = new Request();
297+
$response = $request->addAuthentication($clientCertificateAuthentication);
298+
```
299+
242300
---
243301

244302
## Exception handling

detaild.php

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace Project;
44

55
use BasicHttpClient\Request\Authentication\BasicAuthentication;
6+
use BasicHttpClient\Request\Authentication\ClientCertificateAuthentication;
67
use BasicHttpClient\Request\Message\Body\Body;
78
use BasicHttpClient\Request\Message\Cookie\Cookie;
89
use BasicHttpClient\Request\Message\Header\Header;
@@ -68,4 +69,10 @@
6869
->setMessage($message)
6970
->perform();
7071

72+
$auth = new ClientCertificateAuthentication(
73+
'/var/www/project/clientCert/ca.crt',
74+
'/var/www/project/clientCert/client.crt',
75+
'clientCertPassword'
76+
);
77+
7178
print_r($request->getEffectiveRawHeader());

0 commit comments

Comments
 (0)