Skip to content

Commit 88b7510

Browse files
bugfix
1 parent 04d0126 commit 88b7510

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/active-directory/develop/redirect-uris-ios.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,40 +20,40 @@ ms.custom: aaddev, has-adal-ref
2020

2121
When a user authenticates, Azure Active Directory (Azure AD) sends the token to the app by using the redirect URI registered with the Azure AD application.
2222

23-
The MSAL requires that the redirect URI be registered with the Azure AD app in a specific format. MSAL uses a default redirect URI, if you don't specify one. The format is `msauth.[Your_Bundle_Id]://auth`.
23+
The MSAL requires that the redirect URI is registered with the Azure AD app in a specific format. MSAL uses a default redirect URI, if you don't specify one. The format is `msauth.[Your_Bundle_Id]://auth`.
2424

2525
The default redirect URI format works for most apps and scenarios, including brokered authentication and system web view. Use the default format whenever possible.
2626

2727
However, you may need to change the redirect URI for advanced scenarios, as described in the following section.
2828

2929
## Scenarios that require a different redirect URI
3030

31-
### Cross-app single sign on (SSO)
31+
### Cross-app single sign-on (SSO)
3232

33-
For the Microsoft identity platform to share tokens across apps, each app needs to have the same client ID or application ID. This is the unique identifier provided when you registered your app in the portal (not the application bundle ID that you register per app with Apple).
33+
For the Microsoft identity platform to share tokens across apps, each app needs to have the same client ID or application ID. The client ID is the unique identifier provided when you registered your app in the portal (not the application bundle ID that you register per app with Apple).
3434

3535
The redirect URIs need to be different for each iOS app. This allows the Microsoft identity service to uniquely identify different apps that share an application ID. Each application can have multiple redirect URIs registered in the Azure portal. Each app in your suite will have a different redirect URI. For example:
3636

3737
Given the following application registration in the Azure portal:
3838

39-
- Client ID: `ABCDE-12345` (this is a single client ID)
39+
- Client ID: `ABCDE-12345`
4040
- RedirectUris: `msauth.com.contoso.app1://auth`, `msauth.com.contoso.app2://auth`, `msauth.com.contoso.app3://auth`
4141

4242
App1 uses redirect `msauth.com.contoso.app1://auth`.\
4343
App2 uses `msauth.com.contoso.app2://auth`.\
4444
App3 uses `msauth.com.contoso.app3://auth`.
4545

46-
### Migrating from ADAL to MSAL
46+
### Migrating from Microsoft Authentication Library to MSAL
4747

48-
When migrating code that used the Azure Active Directory Authentication Library (ADAL) to MSAL, you may already have a redirect URI configured for your app. You can continue using the same redirect URI as long as your ADAL app was configured to support brokered scenarios and your redirect URI satisfies the MSAL redirect URI format requirements.
48+
When migrating code that used the Azure Active Directory Authentication Library (Microsoft Authentication Library) to MSAL, you may already have a redirect URI configured for your app. You can continue using the same redirect URI as long as your ADAL app was configured to support brokered scenarios and your redirect URI satisfies the MSAL redirect URI format requirements.
4949

5050
## MSAL redirect URI format requirements
5151

5252
- The MSAL redirect URI must be in the form `<scheme>://host`
5353

5454
Where `<scheme>` is a unique string that identifies your app. It's primarily based on the Bundle Identifier of your application to guarantee uniqueness. For example, if your app's Bundle ID is `com.contoso.myapp`, your redirect URI would be in the form: `msauth.com.contoso.myapp://auth`.
5555

56-
If you're migrating from ADAL, your redirect URI will likely have this format: `<scheme>://[Your_Bundle_Id]`, where `scheme` is a unique string. This format will continue to work when you use MSAL.
56+
If you're migrating from ADAL, your redirect URI will likely have this format: `<scheme>://[Your_Bundle_Id]`, where `scheme` is a unique string. The format will continue to work when you use MSAL.
5757

5858
- `<scheme>` must be registered in your app's Info.plist under `CFBundleURLTypes > CFBundleURLSchemes`. In this example, Info.plist has been opened as source code:
5959

0 commit comments

Comments
 (0)