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
Copy file name to clipboardExpand all lines: articles/active-directory/develop/tutorial-v2-ios.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,7 +138,7 @@ let kScopes: [String] = ["https://graph.microsoft.com/user.read"] // request per
138
138
let kAuthority ="https://login.microsoftonline.com/common"// this authority allows a personal Microsoft account and a work or school account in any organization’s Azure AD tenant to sign in
139
139
var accessToken =String()
140
140
var applicationContext : MSALPublicClientApplication?
141
-
varwebViewParamaters : MSALWebviewParameters?
141
+
varwebViewParameters : MSALWebviewParameters?
142
142
```
143
143
144
144
The only value you need to modify above is the value assigned to `kClientID`to be your [Application ID](https://docs.microsoft.com/azure/active-directory/develop/developer-glossary#application-id-client-id). This value is part of the MSAL Configuration data that you saved during the step at the beginning of this tutorial to register the application in the Azure portal.
@@ -318,16 +318,16 @@ Add the following after `initMSAL` method to the `ViewController` class.
0 commit comments