Skip to content

Commit 76ad255

Browse files
authored
Merge pull request #248611 from cilwerner/deprecate-v2
Deprecate low scoring articles in /develop
2 parents 45faf54 + ac32715 commit 76ad255

13 files changed

+52
-332
lines changed

.openpublishing.redirection.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23253,6 +23253,51 @@
2325323253
"redirect_url": "/azure/active-directory/develop/index-spa",
2325423254
"redirect_document_id": false
2325523255
},
23256+
{
23257+
"source_path_from_root": "/articles/active-directory/develop/api-find-an-api-how-to.md",
23258+
"redirect_url": "/azure/active-directory/develop/quickstart-configure-app-expose-web-apis",
23259+
"redirect_document_id": false
23260+
},
23261+
{
23262+
"source_path_from_root": "/articles/active-directory/develop/consent-framework-links.md",
23263+
"redirect_url": "/azure/active-directory/develop/permissions-consent-overview",
23264+
"redirect_document_id": false
23265+
},
23266+
{
23267+
"source_path_from_root": "/articles/active-directory/develop/authentication-protocols.md",
23268+
"redirect_url": "/azure/active-directory/develop/v2-oauth2-auth-code-flow",
23269+
"redirect_document_id": false
23270+
},
23271+
{
23272+
"source_path_from_root": "/articles/active-directory/develop/delegated-and-app-perms.md",
23273+
"redirect_url": "/azure/active-directory/develop/permissions-consent-overview",
23274+
"redirect_document_id": false
23275+
},
23276+
{
23277+
"source_path_from_root": "/articles/active-directory/develop/perms-for-given-api.md",
23278+
"redirect_url": "/azure/active-directory/develop/scopes-oidc",
23279+
"redirect_document_id": false
23280+
},
23281+
{
23282+
"source_path_from_root": "/articles/active-directory/develop/setup-multi-tenant-app.md",
23283+
"redirect_url": "/azure/active-directory/develop/howto-convert-app-to-be-multi-tenant",
23284+
"redirect_document_id": false
23285+
},
23286+
{
23287+
"source_path_from_root": "/articles/active-directory/develop/registration-config-specific-application-property-how-to.md",
23288+
"redirect_url": "/azure/active-directory/develop/quickstart-register-app",
23289+
"redirect_document_id": false
23290+
},
23291+
{
23292+
"source_path_from_root": "/articles/active-directory/develop/registration-config-how-to.md",
23293+
"redirect_url": "/azure/active-directory/develop/quickstart-register-app",
23294+
"redirect_document_id": false
23295+
},
23296+
{
23297+
"source_path_from_root": "/articles/active-directory/develop/registration-config-sso-how-to.md",
23298+
"redirect_url": "/azure/active-directory/develop/quickstart-register-app",
23299+
"redirect_document_id": false
23300+
},
2325623301
{
2325723302
"source_path_from_root": "/articles/networking/azure-orbital-overview.md",
2325823303
"redirect_url": "/azure/orbital/overview",

articles/active-directory/develop/api-find-an-api-how-to.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

articles/active-directory/develop/authentication-protocols.md

Lines changed: 0 additions & 36 deletions
This file was deleted.

articles/active-directory/develop/consent-framework-links.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

articles/active-directory/develop/delegated-and-app-perms.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

articles/active-directory/develop/permissions-consent-overview.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,10 @@ Depending on the permissions they require, some applications might require an ad
9393

9494
Preauthorization allows a resource application owner to grant permissions without requiring users to see a consent prompt for the same set of permissions that have been preauthorized. This way, an application that has been preauthorized won't ask users to consent to permissions. Resource owners can preauthorize client apps in the Azure portal or by using PowerShell and APIs, like Microsoft Graph.
9595

96-
## Next steps
96+
## See also
9797

9898
- [Delegated access scenario](delegated-access-primer.md)
9999
- [User and admin consent overview](../manage-apps/user-admin-consent-overview.md)
100100
- [OpenID connect scopes](scopes-oidc.md)
101+
-- [Making your application multi-tenant](./howto-convert-app-to-be-multi-tenant.md)
102+
- [AzureAD Microsoft Q&A](/answers/topics/azure-active-directory.html)

articles/active-directory/develop/perms-for-given-api.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

articles/active-directory/develop/quickstart-configure-app-access-web-apis.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ By specifying a web API's scopes in your client app's registration, the client a
3131

3232
[!INCLUDE [portal updates](~/articles/active-directory/includes/portal-update.md)]
3333

34+
Access to APIs require configuration of access scopes and roles. If you want to expose your resource application web APIs to client applications, configure access scopes and roles for the API. If you want a client application to access a web API, configure permissions to access the API in the app registration.
35+
3436
In the first scenario, you grant a client app access to your own web API, both of which you should have registered as part of the prerequisites. If you don't yet have both a client app and a web API registered, complete the steps in the two [Prerequisites](#prerequisites) articles.
3537

3638
This diagram shows how the two app registrations relate to one another. In this section, you add permissions to the client app's registration.

articles/active-directory/develop/quickstart-configure-app-expose-web-apis.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ In this quickstart, you'll register a web API with the Microsoft identity platfo
2626

2727
## Register the web API
2828

29+
Access to APIs require configuration of access scopes and roles. If you want to expose your resource application web APIs to client applications, configure access scopes and roles for the API. If you want a client application to access a web API, configure permissions to access the API in the app registration.
30+
2931
To provide scoped access to the resources in your web API, you first need to register the API with the Microsoft identity platform.
3032

3133
Perform the steps in the **Register an application** section of [Quickstart: Register an app with the Microsoft identity platform](quickstart-register-app.md).

articles/active-directory/develop/registration-config-how-to.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)