Hi,
I need to pass some auth information from the Request header to the rest-client-sdk-bundle.
Ex for jwt :
Authorization Bearer eyJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE0ODc0NjY2MzksIm ...etc...
For now I dont see how to pass the header information I need in the Mapado\RestClientSdk\EntityRepository.
Maybe you have an Idea how I should proceed to pass thoses informations ?
Exemple :
In Mapado\RestClientSdk\EntityRepository code : $data = $this->restClient->get($id); // second parameter not set here
$data = $this->restClient->get($id) call function private function executeRequest($method, $url, $parameters = [])
$this->httpClient->request($method, $url, $parameters);
Thanks for the help