You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This command clones the repository to your local git folder. To open the Go sample for Blob storage, look for `storage-quickstart.go` file.
54
+
This command clones the repository to your local git folder. To open the Go sample for Blob Storage, look for the file named `storage-quickstart.go`.
55
55
56
56
## Authenticate to Azure and authorize access to blob data
57
57
@@ -83,7 +83,7 @@ You can authorize access to data in your storage account using the following ste
83
83
go get github.com/Azure/azure-sdk-for-go/sdk/azidentity
84
84
```
85
85
86
-
Azure CLI authentication isn't recommended for applications running in Azure. When deployed to Azure, this same code can be used to authorize requests to Azure Storage from an application running in Azure. However, you need to enable managed identity on your app in Azure and configure your storage account to allow that managed identity to connect. For detailed instructions on configuring this connection between Azure services, see the [Auth from Azure-hosted apps](/developer/go/azure-sdk-authentication-managed-identity) tutorial.
86
+
Azure CLI authentication isn't recommended for applications running in Azure. When deployed to Azure, the same code can be used to authorize requests to Azure Storage from an application running in Azure. However, you need to enable managed identity on your app in Azure and configure your storage account to allow that managed identity to connect. For detailed instructions on configuring this connection between Azure services, see the [Auth from Azure-hosted apps](/developer/go/azure-sdk-authentication-managed-identity) tutorial.
87
87
88
88
To learn more about different authentication methods, check out [Azure authentication with the Azure SDK for Go](/azure/developer/go/azure-sdk-authentication).
89
89
@@ -198,8 +198,8 @@ The following code example lists the blobs in the specified container:
198
198
// List the blobs in the container
199
199
fmt.Println("Listing the blobs in the container:")
0 commit comments