I personally have not tried, but using the Windows Azure Storage Client library for Windows 8, this should be possible. There are two ways to access the storage:
- Using the account name and storage key : not recommended in the case of the client application, because you will need to separate the account name and the storage key, a risk, since anyone who has the key is essentially the administrator of this storage account.
- Use of shared access subscription (SAS) . This is a recommended practice as you provide limited and time-limited permissions for your blob repository. Users with a SAS URL can only do what you allow them to (for example, you can prevent users from deleting blob files in the blob container and only allow them to specify blobs in it or upload a file.
Take a look at the following code example, where the SAS URL is created using the Mobile Service and transferred to the Windows 8 application, through which the application interacts directly with Windows Azure Blob Storage: http://code.msdn.microsoft.com/windowsapps/ Upload-File-to-Windows-c9169190 .
source share