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
The MSAL library for iOS gives your app the ability to begin using the [Microsoft identity platform](https://aka.ms/aaddev) by supporting [Microsoft Azure Active Directory](https://azure.microsoft.com/en-us/services/active-directory/) and [Microsoft Accounts](https://account.microsoft.com) in a converged experience using industry standard OAuth2 and OpenID Connect. This sample demonstrates all the normal lifecycles your application should experience, including:
18
+
The MSAL library for iOS gives your app the ability to begin using the [Microsoft identity platform](https://aka.ms/aaddev) by supporting [Microsoft Azure Active Directory](https://azure.microsoft.com/en-us/services/active-directory/) and [Microsoft Accounts](https://account.microsoft.com) in a converged experience using industry standard OAuth2 and OpenID Connect. This sample demonstrates all the normal lifecycle your application should experience, including:
19
19
20
20
- How to get a token
21
21
- How to refresh a token
@@ -58,7 +58,7 @@ $ pod install
58
58
$ open MSALiOS.xcworkspace
59
59
```
60
60
61
-
## Step 2: Register your App (Optional)
61
+
## Step 2: Register your App (Optional)
62
62
63
63
This app comes pre-configured for testing. If you would like to register your own app, please follow the steps below.
64
64
@@ -79,11 +79,11 @@ This app comes pre-configured for testing. If you would like to register your ow
79
79
1. Click the Run Button in the top menu or go to Product from the menu tab and click Run.
80
80
2. Once the sample app launches, click on the 'Call Microsoft Graph API' button to go through the sign in flow and see the results from Microsoft Graph.
81
81
82
-
## How to add MSAL libarary into your existing Xcode project
82
+
## How to add MSAL library into your existing Xcode project
83
83
84
84
## Step 1: Configure your application Info.plist
85
85
86
-
Add URI scheme in the `Info.plist`. Redirect URI scheme follows the format `msauth.[app_bundle_id]`. Make sure to substitue[app_bundle_id] with the **Bundle Identifier** for your application.
86
+
Add URI scheme in the `Info.plist`. Redirect URI scheme follows the format `msauth.[app_bundle_id]`. Make sure to substitute[app_bundle_id] with the **Bundle Identifier** for your application.
87
87
88
88
```xml
89
89
<key>CFBundleURLTypes</key>
@@ -143,7 +143,7 @@ For more information see the [Code of Conduct FAQ](https://opensource.microsoft.
143
143
144
144
## Security Library
145
145
146
-
This library controls how users sign-in and access services. We recommend you always take the latest version of our library in your app when possible. We use [semantic versioning](http://semver.org) so you can control the risk associated with updating your app. As an example, always downloading the latest minor version number (e.g. x.*y*.x) ensures you get the latest security and feature enhanements but our API surface remains the same. You can always see the latest version and release notes under the Releases tab of GitHub.
146
+
This library controls how users sign-in and access services. We recommend you always take the latest version of our library in your app when possible. We use [semantic versioning](http://semver.org) so you can control the risk associated with updating your app. As an example, always downloading the latest minor version number (e.g. x.*y*.x) ensures you get the latest security and feature enhancements but our API surface remains the same. You can always see the latest version and release notes under the Releases tab of GitHub.
0 commit comments