Is the any way to authentication the blob-storage service by Azure ad user's info (username and password). I'm using application principal and it's working fine: Code snipet
ClientSecretCredential clientSecretCredential = new ClientSecretCredentialBuilder()
.clientSecret(clientSecret)
.clientId(clientId)
.tenantId(tenantId)
.build();
new BlobServiceClientBuilder()
.credential(clientSecretCredential)
.endpoint(endpoint)
.buildClient()
.getBlobContainerClient(container)
.getProperties();
And now do we have any change for user's info ?