You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 8, 2025. It is now read-only.
Hi
I have working code which works for normal auth and SAS, but not when SAS is for a container.
The same SAS Token works fine in Storage Explorer, but not through SDK (7.5.0), where I get the error in topic.
azure::storage::cloud_storage_account storage_account;
{
auto storage_credentials = azure::storage::storage_credentials(leStorageAccountName->text().toStdWString(), azure::storage::storage_credentials::sas_credential(leSASToken->text().toStdWString()));
if (storage_credentials.is_sas() == true)
storage_account = azure::storage::cloud_storage_account(storage_credentials, true);
}
if (storage_account.is_initialized() == true)
{
azure::storage::cloud_blob_client blob_client = storage_account.create_cloud_blob_client();
blob_client.list_containers(); // <- exception occurs here
}
Any ideas what might be wrong? Hopefully in my code and not the SDK :)
Thanks