m6web/request-headers-forwarder-guzzle-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Symfony Bundle which fetch some HTTP headers from current request and reuse them in Guzzle clients sub-requests.

v1.0.2 2017-11-30 15:15 UTC

This package is auto-updated.

Last update: 2022-03-27 14:01:43 UTC


README

Build Status

Symfony Bundle which fetch some HTTP headers from current request and reuse them in Guzzle clients sub-requests.

One of the "use case" may be when you call a frontal API which make a sub-request to another API which needs authentication HTTP headers... Using this bundle, you can call the frontal API with authentication headers and let it forward them seamlessly to other APIs.

Configuration

m6_web_request_headers_forwarder_guzzle:
    clients:
        test.guzzle1:                               # Guzzle client service id
            headers: ['x-auth-sample', 'something'] # Headers that will be forwarded to "test.guzzle1" client requests

services:
    test.guzzle1:
        class: 'GuzzleHttp\Client'

Suggest