Azure Blob Storage Explorer

MSAL Token Requirements
Information about the required MSAL token and permissions

How to get your MSAL token:

  1. Use the MSAL library in your application to authenticate
  2. Request a token with the scope: https://storage.azure.com/.default
  3. Copy the access token from the authentication result
  4. Paste it in the JWT Token field above

Example MSAL configuration:

const msalConfig = {
  auth: {
    clientId: "your-client-id",
    authority: "https://login.microsoftonline.com/your-tenant-id"
  }
};

const request = {
  scopes: ["https://storage.azure.com/.default"]
};
Connect to Azure Storage
Enter your Azure Storage account name and MSAL JWT token to connect

This should be an MSAL JWT token with Azure Storage permissions