Skip to content

Commit ff65431

Browse files
authored
Update bundle-consent-application-registrations.md
1 parent 4927556 commit ff65431

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

support/entra/entra-id/app-integration/bundle-consent-application-registrations.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ https://login.microsoftonline.com/common/oauth2/v2.0/authorize
4747
```
4848

4949
> [!NOTE]
50-
> The client will seem to be lacking permission for the API. This is expected because the client is listed as `knownClientApplication`.
50+
> The client will seem to be lacking permission for the API. This condition is expected because the client is listed as `knownClientApplication`.
5151
5252
**Example request for work or school accounts only**
5353

@@ -197,14 +197,17 @@ if(apiResult.StatusCode==HttpStatusCode.Forbidden)
197197

198198
## Recommendations and expected behavior
199199

200-
Ideally, you would create a separate flow that guides users through the consent process, provisions your app and API in their tenant or Microsoft account, and completes consent in a single step that's separate from signing in.
200+
Ideally, you would create a separate flow that takes the following actions:
201+
- Guides users through the consent process
202+
- Provisions your app and API in their tenant or Microsoft account
203+
- Completes consent in a single step that's separate from signing in
201204

202-
If you don't separate this flow and instead combine it with your app's sign-in experience, the process can become confusing. Users may encounter multiple consent prompts. To improve the experience, consider adding a message in your app that informs users they might be asked to consent more than once
205+
If you don't separate this flow, and instead combine it with your app's sign-in experience, the process can become confusing. Users might encounter multiple consent prompts. To improve the experience, consider adding a message in your app to inform users that they might be asked to consent more than one time
203206

204207
- For Microsoft accounts, expect at least two consent prompts: one for the client app and one for the API.
205208
- Typically, for work or school accounts, only one consent prompt is required.
206209

207-
The following is an end-to-end code sample that demonstrates a smooth user experience. It supports all account types and prompts for consent only when necessary.
210+
The following is an end-to-end code sample that demonstrates a smooth user experience. This code supports all account types and prompts for consent only when necessary.
208211

209212
```csharp
210213
string[] msGraphScopes = { "User.Read", "Mail.Send", "Calendar.Read" }

0 commit comments

Comments
 (0)