From 1d0bd306d37b13a2c664b9ac7f9a95b3f7780246 Mon Sep 17 00:00:00 2001 From: Patrick Weber <63285860+paweber8@users.noreply.github.com> Date: Wed, 17 Apr 2024 08:50:13 +0200 Subject: [PATCH 1/2] Fix Graph API app proxy application creation sample The current sample version does contain an error that prevents the creation of an application proxy app end-to-end via Microsoft Graph. Reason being the identifierUris to be set are incorrect in the sample. --- concepts/application-proxy-configure-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/application-proxy-configure-api.md b/concepts/application-proxy-configure-api.md index 29d86aac915..acf2da72c2f 100644 --- a/concepts/application-proxy-configure-api.md +++ b/concepts/application-proxy-configure-api.md @@ -286,7 +286,7 @@ Content-type: application/json { "identifierUris": [ - "https://contosoiwaapp-contoso.msappproxy.net" + "api://32977d3b-ee0e-4614-9f50-f583a07842d2" ], "web": { "redirectUris": [ From 990b67bd346df70cfe86de1a0c9371cb1a520abb Mon Sep 17 00:00:00 2001 From: Patrick Weber <63285860+paweber8@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:55:37 +0200 Subject: [PATCH 2/2] Add additional info regarding identifierURIs --- concepts/application-proxy-configure-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/application-proxy-configure-api.md b/concepts/application-proxy-configure-api.md index acf2da72c2f..6ef796447e3 100644 --- a/concepts/application-proxy-configure-api.md +++ b/concepts/application-proxy-configure-api.md @@ -273,7 +273,7 @@ Also, configure the **onPremisesPublishing** property to set the internal and ex ### Step 2.1: Configure the URIs -The request returns a `204 No content` response. +The following request uses the value of **appId** for the **identifierUris** property. You can also use any other identifier that matches the application id URI format expected by Microsoft Entra ID. The request returns a `204 No content` response. # [HTTP](#tab/http)