Following this Microsoft guide

我尝试使用sasToken凭据获取对容器的引用。

我创建了一个sas令牌,然后创建了凭据:
(在sas令牌中更改了一些字母...)

public static StorageCredentials GetContainerCredentials()
{
    string sasToken = "?sv=2014-02-14&sr=c&si=read%20only%20policy&sig=JpCYrvZPXuVqlflu6BOZMh2MxfghoJt8GMDyVY7HOkk%3D";
    return new StorageCredentials(sasToken);
}


使用凭证的代码:

public bool Init(string ContainerName, StorageCredentials credentials)
{
    try
    {
        m_containerName = ContainerName;
        CloudStorageAccount storageAccount = new CloudStorageAccount(credentials, useHttps: true);

        if (null == storageAccount)
        {
            Console.WriteLine("storageAccount is null");
            return false;
        }

        // Create the blob client.
        CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();

        if (null == blobClient)
        {
            Console.WriteLine("blobClient is null");
            return false;
        }

        // Retrieve a reference to a container.
        m_container = blobClient.GetContainerReference(ContainerName);

        Console.WriteLine("Init success");

        return true;
    }
    catch (Exception ex)
    {
        Console.WriteLine("Azure init exception: " + ex.Message);
    }
    m_container = null;
    return false;
}


运行代码时,我在行上得到异常:

CloudStorageAccount storageAccount = new CloudStorageAccount(credentials, useHttps: true);


例外:

System.ArgumentNullException: Value cannot be null.
Parameter name: accountName


我发现StorageCredentials接受sasToken和帐户名的构造函数没有重载。

感谢您的帮助。

汤姆

最佳答案

当您知道帐户名称和端点后缀时,可以使用Uri和凭据创建一个Client对象。您实际上不需要创建云存储帐户。具体来说,可以使用此客户端构造函数:
CloudBlobClient(URI / * http://account.blob.core.windows.net * /,信用额度);

拥有客户端对象后,可以首先在客户端上使用GetContainerReference方法,然后在容器本身上调用CreateIfNotExists方法,以继续创建容器。

10-05 22:54