Skip to content

Commit e5411db

Browse files
committed
Updates for Entra admin center
1 parent 0439311 commit e5411db

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

articles/active-directory/develop/multi-service-web-app-access-microsoft-graph-as-user.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: CelesteDG
88
ms.service: app-service
99
ms.topic: tutorial
1010
ms.workload: identity
11-
ms.date: 06/28/2023
11+
ms.date: 09/15/2023
1212
ms.author: ryanwi
1313
ms.reviewer: stsoneff
1414
ms.devlang: csharp, javascript
@@ -218,8 +218,8 @@ public class Startup
218218
"Instance": "https://login.microsoftonline.com/",
219219
"Domain": "[Enter the domain of your tenant, e.g. contoso.onmicrosoft.com]",
220220
"TenantId": "[Enter 'common', or 'organizations' or the Tenant Id (Obtained from the Entra admin center. Select 'Endpoints' from the 'App registrations' blade and use the GUID in any of the URLs), e.g. da41245a5-11b3-996c-00a8-4d99re19f292]",
221-
"ClientId": "[Enter the Client Id (Application ID obtained from the Entra admin center), e.g. ba74781c2-53c2-442a-97c2-3d60re42f403]",
222-
"ClientSecret": "[Copy the client secret added to the app from the Entra admin center]",
221+
"ClientId": "[Enter the Client Id (Application ID obtained from the Microsoft Entra admin center), e.g. ba74781c2-53c2-442a-97c2-3d60re42f403]",
222+
"ClientSecret": "[Copy the client secret added to the app from the Microsoft Entra admin center]",
223223
"ClientCertificates": [
224224
],
225225
// the following is required to handle Continuous Access Evaluation challenges

articles/active-directory/develop/troubleshoot-publisher-verification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Below are some common issues that may occur during the process.
4343
- **I am getting an error saying that my Partner One ID is invalid or that I do not have access to it.**
4444
Follow the [remediation guidance](#mpnaccountnotfoundornoaccess).
4545

46-
- **When I sign in to the Azure portal, I do not see any apps registered. Why?**
46+
- **When I sign in to the Microsoft Entra admin center, I do not see any apps registered. Why?**
4747
Your app registrations may have been created using a different user account in this tenant, a personal/consumer account, or in a different tenant. Ensure you're signed in with the correct account in the tenant where your app registrations were created.
4848

4949
- **I'm getting an error related to multi-factor authentication. What should I do?**

articles/active-directory/develop/v2-admin-consent.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: active-directory
99
ms.subservice: develop
1010
ms.workload: identity
1111
ms.topic: reference
12-
ms.date: 02/17/2023
12+
ms.date: 09/15/2023
1313
ms.author: ryanwi
1414
ms.reviewer: ludwignick
1515
ms.custom: aaddev
@@ -40,7 +40,7 @@ https://login.microsoftonline.com/{tenant}/v2.0/adminconsent
4040
| Parameter | Condition | Description |
4141
| :--- | :--- | :--- |
4242
| `tenant` | Required | The directory tenant that you want to request permission from. Can be provided in GUID or friendly name format OR generically referenced with `organizations` as seen in the example. Do not use 'common', as personal accounts cannot provide admin consent except in the context of a tenant. To ensure best compatibility with personal accounts that manage tenants, use the tenant ID when possible. |
43-
| `client_id` | Required | The **Application (client) ID** that the [Azure portal – App registrations](https://go.microsoft.com/fwlink/?linkid=2083908) experience assigned to your app. |
43+
| `client_id` | Required | The **Application (client) ID** that the [Microsoft Entra admin center – App registrations](https://go.microsoft.com/fwlink/?linkid=2083908) experience assigned to your app. |
4444
| `redirect_uri` | Required |The redirect URI where you want the response to be sent for your app to handle. It must exactly match one of the redirect URIs that you registered in the app registration portal. |
4545
| `state` | Recommended | A value included in the request that will also be returned in the token response. It can be a string of any content you want. Use the state to encode information about the user's state in the app before the authentication request occurred, such as the page or view they were on. |
4646
|`scope` | Required | Defines the set of permissions being requested by the application. This can be either static (using `/.default`) or dynamic scopes. This can include the OIDC scopes (`openid`, `profile`, `email`). |

0 commit comments

Comments
 (0)