Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!

Qlik Talend ESB tRestRequest Component Integration with Auth0 JWT Bearer Token

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
wei_guo
Support
Support

Qlik Talend ESB tRestRequest Component Integration with Auth0 JWT Bearer Token

Last Update:

Oct 21, 2025 5:08:14 AM

Updated By:

Xiaodi_Shi

Created date:

Oct 21, 2025 5:05:56 AM

When you need to integrate auth0 JWT Bear Token auth with Talend tRestRequest component, it is possible to use JWT Bearer Token with Keystore Type : Java Keystore *.jks to achive this.

 

How To

Please follow the some similar steps from Obtaining a JWT from Microsoft Entra ID | Qlik Help

  1. Open https://dev-xxxx.us.auth0.com/.well-known/jwks.json in a Web browser.
    Reference: json-web-key-sets| auth0.com 
  2. Copy the String value from the x5c field of the matched key and save it to a text file.
    Convert the text file to an talend-esb.cer file, for example:
    -----BEGIN CERTIFICATE-----
    MGLqj98VNLoXaFfpJCBpgB4JaKs
    -----END CERTIFICATE-----
  3. Import this trusted key into your keystore JKS using Java keytool.
    keytool -import -keystore talend-esb.jks -storepass changeit -alias talend-esb talend-esb.cer -noprompt
  4. Use this talend-esb.jks in tRestRequest with the following configurations
    Security: JWT Bearer Token
    Keystore File: /path_to/talend-esb.jks
    Keystore Password : changeit
    Keystore Alias : talend-esb
    Audience: "https://dev-xxxx.us.auth0.com/api/v2/"
  5. Use the bear token fetched from  https://dev-xxxx.us.auth0.com/oauth/token to send request to tRestRequest defined endpoint for testing.

 

Environment

Labels (2)
Version history
Last update:
yesterday
Updated by: