Home > Software engineering >  Getting Unauthorized access to move data from blob to shareponit
Getting Unauthorized access to move data from blob to shareponit

Time:12-01

I am new to Azure I just tried to move data from azure blob to share point. But i am unable to create connection to storage account in logic apps. created blob storage and given access to logicapp. Need help

Why my question deleted?

encoded string. clientRequestId: xxxxxxxx More diagnostic information: x-ms-client-request-id is '*****'.

CodePudding user response:

Issue reproduced from my side and issue got resolved.

The issue your facing is with access key.

Created logic App as shown below and got the same error. enter image description here

In my case the error occurred because of taking connection string instead of access key. So kindly check you are choosing key or connection string. enter image description here

Make sure to copy Key1 or Key 2 from access key .

enter image description here

Copy any of the keys from access key and paste it in Azure Storage Account Access Key. After entering key in Azure Storage Account Access Key got the expected results as shown below.

enter image description here

Then click on create and got the list blobs. In my case list blobs is my Azure blob storage action. enter image description here

  • Related