Source/Sink: OAuth2/API-Key
The Connector also supports communication with protected data-sources and data-sinks. The following combinations are possible:
Data-Source: OAuth2 + API-Key protected APIs for HttpData.
Data-Sink: Only API-Keys can be used for HttpData.
The following properties can be used within the dataAddress
array or respectively the dataDestination
array.
OAuth 2.0
oauth2:tokenUrl
-> token URL where the access-token can be fetched fromoauth2:clientId
-> the client IDoauth2:clientSecretKey
-> the secret-alias in our vault holding the secret (see underlined note)oauth2:scope
-> (optional) the requested scope
The only supported OAuth2 flow right now is the Client Credentials flow.
API-Keys
authKey
-> optional authentication header, e.g.,X-Api-Key
authCode
-> optional authentication value, such as the actual API key
Data-Sources
The data-source settings must be set when the asset is created.
Via the UI
To provide data from an OAuth2 protected API using the EDC UI, an asset with the following Custom Datasource Config (JSON) can be created, which is essentially equal to the dataAddress
array for the Management-API (see below):
Via the Management-API
To create an asset providing OAuth2 protected data, the Management-API of the EDC can be used to send the following request:
POST to /v3/assets
Data Sinks
The data-sink settings must be entered when initiating the transfer.
Initiating Transfer via UI
To start a transfer to an API-Key protected API using the EDC UI, a transfer with the following Custom Datasink Config (JSON) type can be started, which is basically equal to the dataDestination
array in the body for the Management-API:
Initiating Transfer via Management-API
To start a transfer to an API-Key protected API, the Management-API of the EDC can be used to send the following request:
POST to /v3/transferprocesses
Additional Header
Additional individual headers for the data-source or data-sink can be added as desired in the corresponding areas of the dataAddress
(data-source) and/or dataDestination
(data-sink) of the API-calls. To do this, the following combination must be inserted in the appropriate places in the API-Calls:
Example for a header hello
with value world
within the dataDestination towards the data-sink:
Note: HttpData-Pull
Currently, with the HttpData-Pull EDR-flow and the use of API-keys, these API-keys cannot be added dynamically when initiating the transfer. For this, our infrastructure team must store the desired combination of target URL and API-key (auth-key and auth-code) for your Connector in our infrastructure. Please contact our support team to do this in advance.
Last updated
Was this helpful?