Cant add callback url in b2c

Lautaro Alvarez 41 Reputation points
2021-01-29T20:09:41.94+00:00

Hi, when I go to Azure AD B2C tenant edition I have these callback url:

Then I want to add these two new domains:

and I have these error:

No se pudieron actualizar las claves de la aplicación SPB2C. Detalle del error: One or more properties contains invalid values.. [aHSfR2cNqcqWcQBXo2aa36]

Can you help me? Is there something wrong with these new domains? Is there something that I can do to fix it?

Thanks.

Microsoft Security | Microsoft Entra | Microsoft Entra External ID
Microsoft Security | Microsoft Entra | Microsoft Entra ID
0 comments No comments
{count} votes

Answer accepted by question author
  1. AmanpreetSingh-MSFT 56,951 Reputation points Moderator
    2021-02-02T07:56:47.517+00:00

    Hi @Lautaro Alvarez · Thank you for sharing the manifest. I reviewed the manifest and found the property "publisherDomain" is set to null

    Could you please try adding any of your verified domain as publisher domain using below option:

    62894-image.png

    Once the publisher is added, try to add reply url (redirect uri) again.

    Read More: How to: Configure an application's publisher domain

    -----------------------------------------------------------------------------------------------------------

    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.


1 additional answer

Sort by: Most helpful
  1. AmanpreetSingh-MSFT 56,951 Reputation points Moderator
    2021-02-01T09:08:55.977+00:00

    Hi @Lautaro Alvarez · Thank you for reaching out.

    I don't see anything wrong in the URLs that you are trying to add. Could you please try adding the Callback URLs by updating the application manifest as mentioned below:

    "replyUrlsWithType": [  
    		{  
    			"url": "https://ds.qa.MYDOMAIN/authCallback",  
    			"type": "Web"  
    		},  
    		{  
    			"url": "https://qa.MYDOMAIN/authCallback",  
    			"type": "Web"  
    		},  
    		{  
    			"url": "https://dsd.qa.MYDOMAIN/authCallback",  
    			"type": "Web"  
    		},  
    		{  
    			"url": "http://localhost:4200/authCallback",  
    			"type": "Web"  
    		}  
    	]  
    

    -----------------------------------------------------------------------------------------------------------

    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.