Skip to content

Commit 3444093

Browse files
authored
Update scenario-mobile-app-configuration.md
1 parent 6b4b58a commit 3444093

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

articles/active-directory/develop/scenario-mobile-app-configuration.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -325,24 +325,24 @@ To register a scheme for your app:
325325

326326
1. Add your bundle identifier to the end of your scheme. Follow this pattern:
327327

328-
`$"msauth.(BundleId)"`
328+
`$"msauth.(BundleId)"`
329329

330-
Here, `BundleId` uniquely identifies your device. For example, if `BundleId` is `yourcompany.xforms`, your URL scheme is `msauth.com.yourcompany.xforms`.
330+
Here, `BundleId` uniquely identifies your device. For example, if `BundleId` is `yourcompany.xforms`, your URL scheme is `msauth.com.yourcompany.xforms`.
331331

332-
> [!NOTE]
333-
> This URL scheme will become part of the redirect URI that uniquely identifies your app when it receives the broker's response. Make sure that the redirect URI in the format `msauth.(BundleId)://auth` is registered for your application in the [Azure portal](https://portal.azure.com).
332+
> [!NOTE]
333+
> This URL scheme will become part of the redirect URI that uniquely identifies your app when it receives the broker's response. Make sure that the redirect URI in the format `msauth.(BundleId)://auth` is registered for your application in the [Azure portal](https://portal.azure.com).
334334

335-
```XML
336-
<key>CFBundleURLTypes</key>
337-
<array>
338-
<dict>
339-
<key>CFBundleURLSchemes</key>
340-
<array>
341-
<string>msauth.[BUNDLE_ID]</string>
342-
</array>
343-
</dict>
344-
</array>
345-
```
335+
```XML
336+
<key>CFBundleURLTypes</key>
337+
<array>
338+
<dict>
339+
<key>CFBundleURLSchemes</key>
340+
<array>
341+
<string>msauth.[BUNDLE_ID]</string>
342+
</array>
343+
</dict>
344+
</array>
345+
```
346346

347347
#### Step 3: Add LSApplicationQueriesSchemes
348348

0 commit comments

Comments
 (0)