Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 !
@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 😕