diff --git a/Microsoft.WindowsAzure.Storage/src/cloud_table_client.cpp b/Microsoft.WindowsAzure.Storage/src/cloud_table_client.cpp index 5d906f48..401ee754 100644 --- a/Microsoft.WindowsAzure.Storage/src/cloud_table_client.cpp +++ b/Microsoft.WindowsAzure.Storage/src/cloud_table_client.cpp @@ -136,6 +136,10 @@ namespace azure { namespace storage { { set_authentication_handler(std::make_shared(std::move(creds))); } + else if (creds.is_bearer_token()) + { + set_authentication_handler(std::make_shared(std::move(creds))); + } else { set_authentication_handler(std::make_shared());