1
votes

I want to create a key in my mobile app backend that contains my storage account primary key like this tutorial instructs, but I can't figure out where in the Azure Portal I should create the key. I can't find the Connection Strings blade that the tutorial refers to. Am I missing something, or should I use the storage account primary key somewhere else?

1

1 Answers

1
votes

You can retrieve the key from portal, instead of creating it yourself.

enter image description here

The Azure storage connection string is like this,

Standard

DefaultEndpointsProtocol=http;AccountName=myAccount;AccountKey=myKey;

Secure

DefaultEndpointsProtocol=https;AccountName=myAccount;AccountKey=myKey;


Update:

This should be what you are looking for,

enter image description here