fittinq / symfony-katoen-natie
Requires
- fittinq/symfony-connector: ^21.0
- symfony/framework-bundle: ^6.1
- symfony/http-client: ^6.1
Requires (Dev)
- fittinq/symfony-mock: ^4.4
- phpunit/phpunit: ^9.5
- symfony/yaml: ^6.1
README
The Symfony KatoenNatie HTTP Client, KatoenNatieHttpClient
, is designed to simplify HTTP requests to KatoenNatie services with added headers and authentication.
Table of Contents
Introduction
The KatoenNatieHttpClient
class is a Symfony component that enhances the standard Symfony HttpClient.
It adds headers, authentication credentials, and custom options for making requests to KatoenNatie services.
Installation
To use the Symfony KatoenNatie HTTP Client in your project, you can include it via Composer.
composer require fittinq/symfony-katoenNatie
Usage
To use the KatoenNatieHttpClient, follow these steps:
Create an instance of the KatoenNatieHttpClient class, providing it with the required dependencies: HttpClientInterface, username, password, and API key.
use Fittinq\Symfony\KatoenNatie\KatoenNatieHttpClient; use Symfony\Contracts\HttpClient\HttpClientInterface; $httpClient = new HttpClient(); // Replace with your actual HttpClient instance. $username = '%env(KATOENNATIE_USERNAME)%'; $password = '%env(KATOENNATIE_PASSWORD)%'; $apiKey = '%env(KATOENNATIE_API_KEY)%'; $katoenNatieHttpClient = new KatoenNatieHttpClient($httpClient, $username, $password, $apiKey);
You can use the request method to send HTTP requests to KatoenNatie services. It automatically adds headers for Content-Type, login, password, and apiKey.
$url = 'https://katoenNatie-service-url'; $options = ['headers' => ['custom-header' => 'value']]; $response = $katoenNatieHttpClient->request('GET', $url, $options);
Configuration
Add the following parameters to your environment
KATOENNATIE_USERNAME=
KATOENNATIE_PASSWORD=
KATOENNATIE_API_KEY=