[SOLVED] Why does using AD token to access storage account not expire after 90 min in azure?

Issue Here is the code from azure.identity import ClientSecretCredential token_credential = ClientSecretCredential( "",# tenant id "",# active directory application id "", # active directory application secret ) blob_service_client = BlobServiceClient(account_url=oauth_url, credential=token_credential) def listcontainer(): from azure.storage.blob import BlobServiceClient con = blob_service_client.list_containers()

Continue reading