繁体   English   中英

仅从 Azure 存储 [Azure-Blob][REST] 中的 Blob 列表获取特定元数据

[英]Get specific metadata only from List of Blobs in Azure Storage [Azure-Blob][REST]

我可以通过此代码通过 Azure Blob 中的 REST 调用成功获取容器中的 Blob 列表。

const request = require("request");  
require("dotenv").config();

const account = process.env.ACCOUNT_NAME || "";
const key = process.env.ACCOUNT_KEY || "";
var strTime = new Date().toUTCString();
const containerName = "demo";

const BearerToken = <BearerToken>;

const options = {
  url: `https://${account}.blob.core.windows.net/${containerName}?comp=list&restype=container`,

  headers: {
    Authorization: `Bearer ${BearerToken}`,
    "x-ms-date": strTime, //var strTime = new Date().toUTCString();
    "x-ms-version": "2019-02-02", // Stable xms vesrion
  },
};

function callback(error, response, body) {
  console.log(response.body);
}

request(options, callback);

output的代码:

 <?xml version="1.0" encoding="utf-8"?>
<EnumerationResults ServiceEndpoint="https://<storageaccount>.blob.core.windows.net/" ContainerName="demo">
    <Blobs>
        <Blob>
            <Name>
                Mayank Photo.jpg
            </Name>
            <Properties>
                <Creation-Time>
                    Fri, 12 Mar 2021 09:09:32 GMT
                </Creation-Time>
                <Last-Modified>
                    Fri, 12 Mar 2021 09:09:32 GMT
                </Last-Modified>
                <Etag>
                    0x8D8E5368CBE80AB
                </Etag>
                <Content-Length>
                    16685
                </Content-Length>
                <Content-Type>
                    image/jpeg
                </Content-Type>
                <Content-Encoding />
                <Content-Language />
                <Content-CRC64 />
                <Content-MD5>
                    AIoyEnG9amzFlWZ7t1YlCw==
                </Content-MD5>
                <Cache-Control />
                <Content-Disposition />
                <BlobType>
                    BlockBlob
                </BlobType>
                <AccessTier>
                    Hot
                </AccessTier>
                <AccessTierInferred>
                    true
                </AccessTierInferred>
                <LeaseStatus>
                    unlocked
                </LeaseStatus>
                <LeaseState>
                    available
                </LeaseState>
                <ServerEncrypted>
                    true
                </ServerEncrypted>
            </Properties>
        </Blob>
        <Blob>
            <Name>
                MayankPhoto.jpg
            </Name>
            <Properties>
                <Creation-Time>
                    Fri, 12 Mar 2021 09:10:28 GMT
                </Creation-Time>
                <Last-Modified>
                    Fri, 12 Mar 2021 09:10:28 GMT
                </Last-Modified>
                <Etag>
                    0x8D8E536AE20F3A1
                </Etag>
                <Content-Length>
                    16685
                </Content-Length>
                <Content-Type>
                    image/jpeg
                </Content-Type>
                <Content-Encoding />
                <Content-Language />
                <Content-CRC64 />
                <Content-MD5>
                    AIoyEnG9amzFlWZ7t1YlCw==
                </Content-MD5>
                <Cache-Control />
                <Content-Disposition />
                <BlobType>
                    BlockBlob
                </BlobType>
                <AccessTier>
                    Hot
                </AccessTier>
                <AccessTierInferred>
                    true
                </AccessTierInferred>
                <LeaseStatus>
                    unlocked
                </LeaseStatus>
                <LeaseState>
                    available
                </LeaseState>
                <ServerEncrypted>
                    true
                </ServerEncrypted>
            </Properties>
        </Blob>
    </Blobs>
    <NextMarker />
</EnumerationResults>

正如您所看到的,除了 blob 名称之外,还有许多其他字段/元数据返回有没有一种方法可以仅获取 output 中的某些特定元数据字段,例如:文件名、DateCreated、ContentLength。 因为有时我可能会遇到一长串文件,在这种情况下我需要一个简短而快速的响应。

我认为它可能与此处指定的包含中的元数据 URL 参数有关,但我不知道如何相应地修改我的 URL。

它在文档中提到,您只需要将它作为

https://myaccount.blob.core.windows.net/mycontainer?restype=container&comp=list&include=snapshots&include=metadata  

您列出的属性是 blob 的系统属性,它们将默认返回。 无法过滤这些属性并要求 Blob 存储服务返回其中一些属性。

Blob 可以具有默认情况下不返回的其他属性。 其中之一是用户定义的元数据。 要获取用户定义的元数据,您需要在请求中添加include=metadata 其他此类属性是复制属性(即,如果作为复制操作的结果创建了 blob 的信息)。 要查看副本信息,您需要在请求中添加include=copy

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM