Unable To Connect To Azure Blob Storage Using InteractiveBrowserCredential
This code works just fine: from azure.storage.blob import BlobServiceClient from azure.identity import InteractiveBrowserCredential, DeviceCodeCredential, ClientSecretCredential c
Solution 1:
To use InteractiveBrowserCredential, you need to add a redirect url under Mobile and desktop applications platform, not web platform. If you added redirect url under web platform, you will encounter that issue.
Your code works fine.
Post a Comment for "Unable To Connect To Azure Blob Storage Using InteractiveBrowserCredential"