Want to access Azure storage

I want to access Azure storage (Blob, table, queue) using REST API. I am referring following links -

https://msdn.microsoft.com/en-us/library/hh225339.aspx

https://msdn.microsoft.com/en-us/library/dn140256.aspx

But I am not able to figure out where I should add configurations e.g. 

signedstart=2009-02-09
signedexpiry=2009-02-10
signedresource=c
signedpermissions=r
signature=dD80ihBh5jfNpymO5Hg1IdiJIEvHcJpCMiCMnN/RnbI=
signedidentifier=YWJjZGVmZw==
signedversion=2012-02-12

OR

//Account name and key. Modify for your account.string accountName = "myaccount"; string accountKey = "nYS0gln9fA7bvY+rwu2iWADyzSNITGkhM88J8HUoyofpK7C8fHcZc2kIZp6cKgYJUM74rHI82L50Iau4+9hPjQ=="; //Get a reference to the storage account, with authentication credentials. CloudStorageAccount storageAccount = new CloudStorageAccount(new StorageCredentials(accountName, accountKey), true); //Create a new client object. CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); // Retrieve a reference to a container. CloudBlobContainer container = blobClient.GetContainerReference("mycontainer"); // Create the container if it does not already exist. container.CreateIfNotExists(); // Output container URI to debug window. Console.WriteLine(container.Uri);

Could someone please help me.

Thanks

Satish

January 26th, 2015 3:56pm

This might help you

http://blog.einbu.no/2009/08/authenticating-against-azure-table-storage/

Free Windows Admin Tool Kit Click here and download it now
January 26th, 2015 4:54pm

Bhushan - Many thanks for pointer. 

My question is where to paste that code?

January 26th, 2015 5:08pm

Hi Satish,

Based on my understanding, it seems that you want to learn about how to use  REST API  to call Azure Storage.

I suggest that you could refer to the tutorial below:

https://convective.wordpress.com/2010/08/18/examples-of-the-windows-azure-storage-services-rest-api/

If I misunderstand you ,Could you please give more details on your question?

Best Regards,

Kevin Shen.

Free Windows Admin Tool Kit Click here and download it now
January 27th, 2015 10:19am

Thank you guys. Could you guys please advise me where to execute this code? 
February 2nd, 2015 3:50am

Hi,

If you want to use Azure Storage rest API to do something, you could download sample code below to get started.

# https://code.msdn.microsoft.com/windowsazure/CSAzureStorageRESTAPI-2b9055fb/

Hope this could give you some help, if you still encounter some issues later, I would suggest you to create a new thread in our forum.

Thanks for your posting.

Best Regards,

Jambor

Free Windows Admin Tool Kit Click here and download it now
February 2nd, 2015 4:00am

Is there same REST API for Table as well?
February 2nd, 2015 4:25am

Hi,

This sample demonstrate us how to generate an HTTP message that uses the List Blobs API.

Best Regards,

Jambor

Free Windows Admin Tool Kit Click here and download it now
February 2nd, 2015 4:29am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics