Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The actual bearer token should be set in the password field of the import configuration. The username is not used when using a bearer token for authentication.


The When the hydronet (WIWB) API connection for the BHP project works on our standalones, but within the BHP network it is required to connect to connect to the Hydronet API through the proxy API from BHP. As a consequence, the API call requires two additional parameters (a proxy like MuleSoft, additional authentication information might be required in the header. It is possible to add two additional parameters clientId and clientSecret. The default headers are X-IBM-Client-Id , and X-IBM-Client-Secret), but these can be changed by configuring the respective headers. To set these headers use the properties below:

Code Block
languagexml
linenumberstrue
<properties>
			<string key="dataSource" value="BHP.Composite.Adjusted"/>
			<string key="authentication" value="BearerToken"/>
			<string key="keepDownloadDataInTempFolder" value="true" "/>
			<string  key="clientId" value="ID"/>
			<string  key="clientIdHeader" value="ID"/>
			<string key="clientSecret" value="Secret"/>
			<string  key="clientSecretHeader" value="ID"/>
			<bool  key="logClientIdHeader" value="true"/>			
</properties>

...