azure - How to consent an app and its dependent services in AAD -


i created multi-tenant mvc application has dependency on 2 services in same directory. requiredresourceaccess section of manifest looks this:

  "requiredresourceaccess": [     {       "resourceappid": "fc7ecdae-ec69-40a8-a88f-a859591fab07",       "resourceaccess": [         {           "id": "058901ac-c903-4772-8ccb-d746b94ac86b",           "type": "scope"         }       ]     },     {       "resourceappid": "66d17ca1-0084-4865-baad-bd45e385ab46",       "resourceaccess": [         {           "id": "b92337f6-3727-4563-a1fd-2a7a065def89",           "type": "scope"         }       ]     },     {       "resourceappid": "00000002-0000-0000-c000-000000000000",       "resourceaccess": [         {           "id": "311a71cc-e848-46a1-bdf8-97ff7156d8e6",           "type": "scope"         }       ]     }   ], 

i copied onboarding controller sample here. when try sign admin user different tenant, instead of consent screen, error:

aadsts65005: resource 'fc7ecdae-ec69-40a8-a88f-a859591fab07' not exist or 1 of queried reference-property objects not present. 

according answer here, should able have single consent screen mvc app , dependent services. missing?

have tried following instructions on page set access local api resources?

http://msdn.microsoft.com/en-us/library/azure/dn132599.aspx

the error implies me application or exposed entitlements may not have been configured.

if provide me tenant id can take closer issues here.

please, let me know if above resource helps! thanks


Comments

Popular posts from this blog

c++ - No viable overloaded operator for references a map -

java - Custom OutputStreamAppender not run: LOGBACK: No context given for <MYAPPENDER> -

java - Cannot secure connection using TLS -