I have created AAD application from gallery. There is one in app registrations section and one in enterprise applications. App registrations application points to the enterprise app (managed application in local directory).
I want to configure SAML SSO for the enterprise app. There are a few required properties which have to be set.
I am able to set Sign on URL
(using graph api), but I cannot set Identifier (Entity ID)
and Reply URL
. I thought that this will do the job:
Set-AzureADApplication -ObjectId <id of app from App registrations>
-IdentifierUris $Identifiers -ReplyUrls $ReplyUrls
but the enterprise app is untouched. Also Set-AzureADServicePrincipal
doesn't seem to work for me.
There are no errors. Nothing changed on the portal after refresh. I am connected to correct tenant and have fresh modules installed.
I tried also with RM: Update-AzureRmADApplication
, Set-AzureRmADApplication
, Set-AzureRmADServicePrincipal
, Update-AzureRmADServicePrincipal
.
I also couldn't find a working graph api.
Is there a way to do this from code? Maybe I am just doing something wrong and it's working for you? I would be grateful for some help. Thanks