-
Notifications
You must be signed in to change notification settings - Fork 2
How to use ADT
https://api.adt.apps.bosch-engineering.com/v1
You will need an ID Token for authenticating you requests in ADT.
Create file auth.json with the following content:
{"AuthParameters" : {"USERNAME" : "<your-email>", "PASSWORD" : "<password>"}, "AuthFlow" : "USER_PASSWORD_AUTH", "ClientId" : "<client-id>"}
In the same location as auth.json run the following script: get_token.sh:
./get_token.sh
Use the output key in your further Requests in ADT.
Download the request data template curl_channel_list.json.
curl -X POST --data @curl_channel_list.json \
-H "Content-Type: application/json" \
-H"Authorization: Bearer <IDToken>" \
https://api.adt.apps.bosch-engineering.com/v1
You will get the signal list of the MF4 file. Which could be used for the export quick start tutorial.
Download the request data template curl_export_one_signal.json.
curl -X POST --data @curl_export_one_signal.json \
-H "Content-Type: application/json" \
-H"Authorization: Bearer <IDToken>" \
https://api.adt.apps.bosch-engineering.com/v1
You will find the exported parquet file of the chosen signal in the output folder.
Download the Postman Quick Start Collection.

You will find the ID Token in the AuthenticationResult
.
- Click the collection name
- Click
Variables
tab. - Input the ID Token.

Open the request "Quick Start Get Channels". Fill the needed fields. The input bucket must be the bucket that the cross account role has the access to. And then click "Send".

You will get the signal list of the MF4 file. Which could be used for the export quick start tutorial.
Open the request "Quick Start Export Signal". Fill the needed fields. The input and output bucket must be the buckets that the cross account role has the access to. And then click "Send".

You will find the exported parquet file of the chosen signal in the output folder.
https://github.com/bosch-engineering/automotive_data_transformer_support/wiki/Limitations