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
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
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
0 commit comments