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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
yousrarami96
Contributor III
Contributor III

Get Client Secret from Qliksense

Hello,

Is there a possibility to get Client Secret information (expiry date for example) from Qlik sense ? The client secret is generated in Azure AD and I would like to retreive the information about the expiry date from Qlik in order to regenerate it or warn the users that its expiration is close.

Thank you !

Labels (1)
1 Reply
jprdonnelly
Employee
Employee

@yousrarami96 - no, you cannot get that data from Qlik Sense, though you can use the REST API connector (or in Qlik Cloud - QAA connectors as well) to query Entra ID (neé Azure AD) about the expiration date using Graph API.

You can query the Entra ID application that represents your tenant's interactive login process using the https://graph.microsoft.com/v1.0/applications/<app-id> URL. The JSON output you want to consume is .passwordCredentials.endDateTime

This is a scratch QAA workflow that can hopefully demonstrate - I didn't add much logic 😕

- @jprdonnelly