Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integrations/symfony-bundle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ Authentication
--------------

You can configure a client with authentication. Valid authentication types are
``basic``, ``bearer``, ``service``, ``wsse`` and ``query_param``. See more examples at the
``basic``, ``bearer``, ``service``, ``wsse``, ``query_param`` and ``header``. See more examples at the
:doc:`full configuration </integrations/symfony-full-configuration>`.

.. code-block:: yaml
Expand Down
4 changes: 4 additions & 0 deletions integrations/symfony-full-configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ This page shows an example of all configuration values provided by the bundle.
type: 'query_param'
params:
access_token: '9zh987g86fg87gh978hg9g79'
my_header:
type: 'header'
header_name: 'ApiKey'
header_value: '9zh987g86fg87gh978hg9g79'
my_service:
type: 'service'
service: 'my_authentication_service'
Expand Down