In my previous question i tried to access the Azure Key Vault using clientID and client-secret and get the vault information. Now am trying to access the key vault using clientID and certificate based authentication. I have googled and found this. But unable to proceed further, as i could not understand how to proceed further.
ApplicationTokenCredentials credentials = new ApplicationTokenCredentials(
client, tenant, pfxCertificatePath, password, AzureEnvironment.AZURE);
Azure azure = Azure.authenticate(credentials).withSubscription(subscriptionId);
Could someone provide insights what should be the value for tenant and subscriptioID. Also, do i have to provide my certification path in the pfxcertification Please help me in understanding the above lines of code.
Thanks