Azure China (10) 使用Azure China SAS Token

简介:

 《Windows Azure Platform 系列文章目录

 

  本文介绍的是国内由世纪互联运维的Azure China

  注意:本文介绍的是Azure China Storage Private Blob,即不可以通过匿名访问

 

  在笔者之前的文章中,我们介绍了Azure Share Access Signature,可以对设置为Private属性的Azure Container,设置一个临时的访问Token,在这个可以访问的时间内,对某一个Azure Blob资源进行访问。

  具体可以参考笔者之前写的文章:

  Windows Azure Storage (1) Windows Azure Storage Service存储服务

      Windows Azure Storage (2) Windows Azure Storage Service存储服务之Blob详解(上)

      Windows Azure Storage (3) Windows Azure Storage Service存储服务之Blob详解(中)

      Windows Azure Storage (4) Windows Azure Storage Service存储服务之Blob Share Access Signature

 

  那如果我们使用国内由世纪互联运维的Azure China,如何才能使用Azure China Share Access Signature呢?

  这里我写了一个基于ASP.NET的Sample Code,可以在这里下载:http://files.cnblogs.com/files/threestone/AzureBlobSAS.rar

 

  如何运行这个ASP.NET的Sample Code?

  1.首先我们用Visual Studio 打开项目

  2.查看存储账号信息。

  

 

  查看访问密钥:

    

 

  3.将上面的存储账号名称和访问密钥修改:

复制代码
    <!--存储账号名称-->
    <add key="AccountName" value="[YourAzureChinaStorageAccountName]" />
    <!--存储账号密钥-->
    <add key="AccountKey" value="[YourAzureChinaStorageAccountKey]" />
    <!--ContainerName,必须是小写-->
    <add key="ContainerName" value="private" />
    <!-- SAS过期时间xx秒-->
    <add key="expireseconds" value="20" />
复制代码

  注意:ContainerName的值,默认可以不存在。

  我写的sample code代码里,如果ContainerName不存在,则创建该Container,并且权限为Off

复制代码
    private void EnsureContaierExists()
        {
            var container = GetContainer();

            // 检查container是否被创建,如果没有,创建container
            container.CreateIfNotExists();

            var permissions = container.GetPermissions();
            //对Storage的访问权限是OFF
            permissions.PublicAccess = BlobContainerPublicAccessType.Off;

            container.SetPermissions(permissions);
        }
复制代码

 

  4.然后我们可以Rebuild Solution,再按F5运行即可。

 


本文转自Lei Zhang博客园博客,原文链接:http://www.cnblogs.com/threestone/p/4952246.html,如需转载请自行联系原作者

目录
相关文章
|
3月前
【Azure Developer】在微软云中国区,如何使用Microsoft GraphAPI连接到B2C Tenant
【Azure Developer】在微软云中国区,如何使用Microsoft GraphAPI连接到B2C Tenant
|
3月前
|
Python
【Azure Developer】Python – Get Access Token by Azure Identity in China Azure Environment
【Azure Developer】Python – Get Access Token by Azure Identity in China Azure Environment
|
3月前
|
开发工具
【Azure Developer】在使用中国区 Azure AD B2C时, AUTHORITY的值是什么呢?
【Azure Developer】在使用中国区 Azure AD B2C时, AUTHORITY的值是什么呢?
|
3月前
|
API Python
【Azure Developer】【Python 】使用 azure.identity 和 azure.common.credentials 获取Azure AD的Access Token的两种方式
【Azure Developer】【Python 】使用 azure.identity 和 azure.common.credentials 获取Azure AD的Access Token的两种方式
|
3月前
|
存储 消息中间件 JSON
【Azure Event Hub】Schema Registry 在China Azure门户上不能创建的替代方案
【Azure Event Hub】Schema Registry 在China Azure门户上不能创建的替代方案
|
3月前
|
存储 API C#
【Azure Developer】解决Azure Key Vault管理Storage的示例代码在中国区Azure遇见的各种认证/授权问题 - C# Example Code
【Azure Developer】解决Azure Key Vault管理Storage的示例代码在中国区Azure遇见的各种认证/授权问题 - C# Example Code
KubeCon + CloudNativeCon + Open Source Summit China 【Virtual Project Office Hours: Antrea】
KubeCon + CloudNativeCon + Open Source Summit China 【Virtual Project Office Hours: Antrea】
KubeCon + CloudNativeCon + Open Source Summit China 【Virtual Project Office Hours: Antrea】
|
安全 数据安全/隐私保护 运维