Skip to content

Commit 7907025

Browse files
Merge pull request #218504 from derisen/patch-16
remove potentially misleading notice
2 parents 37c9fcc + 716d3d8 commit 7907025

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

articles/active-directory/develop/msal-node-migration.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,11 @@ ms.custom: has-adal-ref
2525

2626
## Update app registration settings
2727

28-
When working with ADAL Node, you were likely using the **Azure AD v1.0 endpoint**. Apps migrating from ADAL to MSAL should also consider switching to **Azure AD v2.0 endpoint**.
28+
When working with ADAL Node, you were likely using the **Azure AD v1.0 endpoint**. Apps migrating from ADAL to MSAL should switch to **Azure AD v2.0 endpoint**.
2929

3030
1. Review the [differences between v1 and v2 endpoints](../azuread-dev/azure-ad-endpoint-comparison.md)
3131
1. Update, if necessary, your existing app registrations accordingly.
3232

33-
> [!NOTE]
34-
> In order to ensure backward compatibility, MSAL Node supports both v1.0 end v2.0 endpoints.
35-
3633
## Install and import MSAL
3734

3835
1. install MSAL Node package via NPM:
@@ -177,7 +174,7 @@ authenticationContext.acquireTokenWithAuthorizationCode(
177174
);
178175
```
179176

180-
MSAL Node supports both **v1.0** and **v2.0** endpoints. The v2.0 endpoint employs a *scope-centric* model to access resources. Thus, when you request an access token for a resource, you also need to specify the scope for that resource:
177+
The v2.0 endpoint employs a *scope-centric* model to access resources. Thus, when you request an access token for a resource, you also need to specify the scope for that resource:
181178

182179
```javascript
183180
const tokenRequest = {

0 commit comments

Comments
 (0)