Kobus Alberts
Kobus Alberts

Reputation: 11

Azure Blob Storage - Get Blob by Tags is not working

I have been experiencing issues with the Get By Tags functionality for the Azure Blob REST Api.

I am trying to add and read tags from blobs but when requesting from the url via postman on the url that is similar to - https://xxxx.blob.core.windows.net/xxx/myblob?comp=tags , I get the following response

<?xml version="1.0" encoding="utf-8"?>
<Error>
    <Code>InvalidQueryParameterValue</Code>
    <Message>Value for one of the query parameters specified in the request URI is invalid.
RequestId:92580002-101e-001c-7af7-76bf3e000000
Time:2020-08-20T13:42:08.8566047Z</Message>
    <QueryParameterName>comp</QueryParameterName>
    <QueryParameterValue>tags</QueryParameterValue>
    <Reason />
</Error>

Upvotes: 1

Views: 2420

Answers (1)

Ivan Glasenberg
Ivan Glasenberg

Reputation: 30015

This is a new feature for blob. This feature is now in preview and only supports the following regions:

  1. Canada Central
  2. Canada East
  3. France Central
  4. France South

Because this feature is only in public preview, you'll need to register your subscription before you can use the feature. Read this article for more details.

Upvotes: 0

Related Questions