Skip to content Skip to sidebar Skip to footer

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.

enter image description here

Your code works fine.

enter image description here

Post a Comment for "Unable To Connect To Azure Blob Storage Using Interactivebrowsercredential"