You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This quickstart contains a code sample that demonstrates how a native iOS or macOS application can sign in personal, work and school accounts, get an access token, and call the Microsoft Graph API.
27
27
28
-
This quickstart is applicable to both iOS and macOS apps. Some steps are needed only for iOS apps. Those steps call out that they are only for iOS.
28
+
This quickstart applies to both iOS and macOS apps. Some steps are needed only for iOS apps. Those steps call out that they are only for iOS.
29
29
30
30

Your app must also have the following in your `AppDelegate`. This lets MSAL SDK handle token response from the Auth broker app when you perform authentication.
192
+
Your app must also have the following in your `AppDelegate`. This lets MSAL SDK handle token response from the Auth broker app when you do authentication.
@@ -220,7 +220,7 @@ Your app must also have the following in your `AppDelegate`. This lets MSAL SDK
220
220
}
221
221
```
222
222
223
-
Finally, your app must has an `LSApplicationQueriesSchemes` entry in your ***Info.plist*** alongside the `CFBundleURLTypes`. The sample comes with this included.
223
+
Finally, your app must have an `LSApplicationQueriesSchemes` entry in your ***Info.plist*** alongside the `CFBundleURLTypes`. The sample comes with this included.
224
224
225
225
```xml
226
226
<key>LSApplicationQueriesSchemes</key>
@@ -239,7 +239,7 @@ MSAL has two methods used to acquire tokens: `acquireToken` and `acquireTokenSil
239
239
Some situations require users to interact with Microsoft identity platform. In these cases, the end user may be required to select their account, enter their credentials, or consent to your app's permissions. For example,
240
240
241
241
* The first time users sign in to the application
242
-
* If a user resets their password, they will need to enter their credentials
242
+
* If a user resets their password, they'll need to enter their credentials
243
243
* When your application is requesting access to a resource for the first time
244
244
* When MFA or other Conditional Access policies are required
0 commit comments