Skip to content

Commit 058f1c7

Browse files
authored
more clarity + minor formatting fix
1 parent 9f94868 commit 058f1c7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/storage/common/storage-auth-aad-app.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ The tenant ID identifies the Azure AD tenant to use for authentication. It's als
113113

114114
The code example shows how to get an access token from Azure AD. The access token is used to authenticate the specified user and then authorize a request to create a block blob. To get this sample working, first follow the steps outlined in the preceding sections.
115115

116-
To request the token, you'll need the following values from your app's registration:
116+
To request the access token, you'll need the following values from your app's registration:
117117

118118
- The name of your Azure AD domain. Retrieve this value from the **Overview** page of your Azure Active Directory.
119119
- The tenant (or directory) ID. Retrieve this value from the **Overview** page of your app registration.
@@ -140,7 +140,7 @@ A completed sample web application that acquires an access token and uses it to
140140

141141
#### Add assembly references and using directives
142142

143-
In Visual Studio, install the Azure Storage client library. From the **Tools** menu, select **NuGet Package Manager**, then **Package Manager Console**. Type the following commands into the console window to install the necessary packages from the Azure Storage client library for .NET:
143+
In Visual Studio, install the Azure Storage client library and the authentication library. From the **Tools** menu, select **NuGet Package Manager**, then **Package Manager Console**. Type the following commands into the console window to install the necessary packages for the Azure Storage client library for .NET and the Microsoft.Identity.Web authentication library:
144144

145145
# [.NET v12 SDK](#tab/dotnet)
146146

@@ -149,7 +149,7 @@ Install-Package Azure.Storage.Blobs
149149
Install-Package Microsoft.Identity.Web -Version 0.4.0-preview
150150
```
151151

152-
Next, add the following using directives to the HomeController.cs file:
152+
Next, add the following using directives to the _HomeController.cs_ file:
153153

154154
```csharp
155155
using Microsoft.Identity.Web; //MSAL library for getting the access token
@@ -163,7 +163,7 @@ Install-Package Microsoft.Azure.Storage.Blob
163163
Install-Package Microsoft.Identity.Web -Version 0.4.0-preview //or a later version
164164
```
165165

166-
Next, add the following using directives to the HomeController.cs file:
166+
Next, add the following using directives to the _HomeController.cs_ file:
167167

168168
```csharp
169169
using Microsoft.Identity.Client; //MSAL library for getting the access token

0 commit comments

Comments
 (0)