Skip to content

Commit 23fd3b3

Browse files
authored
Fix formatting in MSAL iOS app guide
1 parent ec3b963 commit 23fd3b3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

support/entra/entra-id/app-integration/repeat-login-prompts-in-msal-ios-app.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,13 @@ However, if you customize the browser configuration for authentication, such as
3434

3535
To prevent repeated login prompts, you must allow cookie sharing when you customize the browser. To enable SSO and cookie sharing between MSAL and your iOS app, use one of the following solutions:
3636

37-
- Use `ASWebAuthenticationSession` and Safari system browser (`UIApplication.shared.open`)
37+
Use `ASWebAuthenticationSession` and Safari system browser (`UIApplication.shared.open`)
3838

3939
- Use Case: Your app uses MSAL together with the default `ASWebAuthenticationSession` instance, and you open external links or logout flows in Safari system browser.
4040
- **Note:** `ASWebAuthenticationSession` is the recommended method for MSAL interactive authentication on iOS 12+. It's the only supported method on iOS 13+. This method is privacy-preserving and shares cookies with system browser. SSO works between MSAL and Safari browser application because they share cookies through the system authentication session.
41-
- Use `WKWebView`
41+
42+
Use `WKWebView`
43+
4244
- Use Case: You explicitly configure MSAL to use `WKWebView`, and your app also uses `WKWebView` for related workflows.
4345

4446
- **Note:** You can use `WKWebView` for a consistent experience within your app. However, because it's sandboxed, `WKWebView` doesn't share session cookies with Safari system browser or other apps. This condition limits support for SSO to within your app only.

0 commit comments

Comments
 (0)