Skip to content

Commit d4b0131

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into 1644321-loc-fix-content
2 parents 8d45773 + 69e4e7f commit d4b0131

File tree

92 files changed

+1065
-708
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+1065
-708
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41733,6 +41733,11 @@
4173341733
"redirect_url": "/azure-stack/operator",
4173441734
"redirect_document_id": false
4173541735
},
41736+
{
41737+
"source_path": "articles/synapse-analytics/index.yml",
41738+
"redirect_url": "/azure/sql-data-warehouse/",
41739+
"redirect_document_id": false
41740+
},
4173641741
{
4173741742
"source_path": "articles/azure-stack/user/index.yml",
4173841743
"redirect_url": "/azure-stack/user",

articles/active-directory/develop/tutorial-v2-ios.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,15 @@ Then Add the following code to `ViewController.swift` prior to `viewDidLoad()`:
133133
let kClientID = "Your_Application_Id_Here"
134134

135135
// Additional variables for Auth and Graph API
136-
let kGraphURI = "https://graph.microsoft.com/v1.0/me/"
137-
let kScopes: [String] = ["https://graph.microsoft.com/user.read"]
138-
let kAuthority = "https://login.microsoftonline.com/common"
136+
let kGraphURI = "https://graph.microsoft.com/v1.0/me/" // the Microsoft Graph endpoint
137+
let kScopes: [String] = ["https://graph.microsoft.com/user.read"] // request permission to read the profile of the signed-in user
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
139139
var accessToken = String()
140140
var applicationContext : MSALPublicClientApplication?
141141
var webViewParamaters : MSALWebviewParameters?
142142
```
143143

144-
Modify the value assigned to `kClientID`to be your Application 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.
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.
145145

146146
## For iOS only, configure URL schemes
147147

13.1 KB
Loading
9.33 KB
Loading
17.1 KB
Loading
9.32 KB
Loading
37.4 KB
Loading
8.3 KB
Loading
7.4 KB
Loading
64.4 KB
Loading

0 commit comments

Comments
 (0)