Skip to content

Commit 4bcfbd6

Browse files
authored
Merge pull request #114161 from hamiltonha/patch-15
Update quickstart-v2-javascript-auth-code.md
2 parents a9fbf83 + 60d4a3d commit 4bcfbd6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/active-directory/develop/quickstart-v2-javascript-auth-code.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ In this quickstart, you use a code sample to learn how a JavaScript single-page
109109
110110
> [!div renderon="portal" class="sxs-lookup"]
111111
> > [!NOTE]
112-
> > `Enter_the_Supported_Account_Info_Here`
112+
> > :::no-loc text="Enter_the_Supported_Account_Info_Here":::
113113
114114
> [!div renderon="docs"]
115115
>
@@ -175,15 +175,16 @@ Run the project with a web server by using [Node.js](https://nodejs.org/en/downl
175175
The MSAL.js library signs in users and requests the tokens that are used to access an API that's protected by Microsoft identity platform. The sample's *index.html* file contains a reference to the library:
176176
177177
```html
178-
<script type="text/javascript" src="https://alcdn.msftauth.net/lib/1.2.1/js/msal.js" integrity="sha384-9TV1245fz+BaI+VvCjMYL0YDMElLBwNS84v3mY57pXNOt6xcUYch2QLImaTahcOP" crossorigin="anonymous"></script>
178+
<script type="text/javascript" src="https://alcdn.msauth.net/browser/2.0.0-beta.0/js/msal-browser.js" integrity=
179+
"sha384-r7Qxfs6PYHyfoBR6zG62DGzptfLBxnREThAlcJyEfzJ4dq5rqExc1Xj3TPFE/9TH" crossorigin="anonymous"></script>
179180
```
180181
> [!TIP]
181182
> You can replace the preceding version with the latest released version under [MSAL.js releases](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases).
182183
183184
Alternatively, if you have Node.js installed, you can download the latest version by using the Node.js Package Manager (npm):
184185
185186
```batch
186-
npm install msal
187+
npm install @azure/msal-browser
187188
```
188189
189190
## Next steps

0 commit comments

Comments
 (0)