Skip to content

Commit 6b4b58a

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

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

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

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ var pca = PublicClientApplicationBuilder
104104

105105
For a list of all methods that are available on `PublicClientApplicationBuilder`, see the [Methods list](https://docs.microsoft.com/dotnet/api/microsoft.identity.client.publicclientapplicationbuilder#methods).
106106

107-
For a description of all options that are exposed in `PublicClientApplicationOptions`, see the[reference documentation](https://docs.microsoft.com/dotnet/api/microsoft.identity.client.publicclientapplicationoptions).
107+
For a description of all options that are exposed in `PublicClientApplicationOptions`, see the [reference documentation](https://docs.microsoft.com/dotnet/api/microsoft.identity.client.publicclientapplicationoptions).
108108

109109
## Tasks for Xamarin iOS
110110

@@ -245,28 +245,28 @@ To register your app's URL scheme, follow these steps:
245245
1. Prefix `CFBundleURLSchemes` with `msauth`.
246246
1. Add `CFBundleURLName` to the end. Follow this pattern:
247247

248-
`$"msauth.(BundleId)"`
248+
`$"msauth.(BundleId)"`
249249

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

252-
> [!NOTE]
253-
> This URL scheme will become part of the redirect URI that uniquely identifies your app when it receives the broker's response.
252+
> [!NOTE]
253+
> This URL scheme will become part of the redirect URI that uniquely identifies your app when it receives the broker's response.
254254

255-
```XML
256-
<key>CFBundleURLTypes</key>
257-
<array>
258-
<dict>
259-
<key>CFBundleTypeRole</key>
260-
<string>Editor</string>
261-
<key>CFBundleURLName</key>
262-
<string>com.yourcompany.xforms</string>
263-
<key>CFBundleURLSchemes</key>
264-
<array>
265-
<string>msauth.com.yourcompany.xforms</string>
266-
</array>
267-
</dict>
268-
</array>
269-
```
255+
```XML
256+
<key>CFBundleURLTypes</key>
257+
<array>
258+
<dict>
259+
<key>CFBundleTypeRole</key>
260+
<string>Editor</string>
261+
<key>CFBundleURLName</key>
262+
<string>com.yourcompany.xforms</string>
263+
<key>CFBundleURLSchemes</key>
264+
<array>
265+
<string>msauth.com.yourcompany.xforms</string>
266+
</array>
267+
</dict>
268+
</array>
269+
```
270270

271271
#### Step 5: Add to the LSApplicationQueriesSchemes section
272272

0 commit comments

Comments
 (0)