Hello @Srinivas Mukund Chavali ,
Thanks for posting your query on Q&A platform. I was able to review the error "AuthRequest has no assertion consumer service URL specified in metadata". Since the Auth request is missing the consumer service URL, we must define the Service provider/application meta data:
- In the application manifest please ensure that SAML metadata URL is defined :
- Once validated please ensure that ACS URL is defined in the metadata:
-But if we don't have metadata URL then we need to Override or set the assertion consumer URL https://learn.microsoft.com/en-us/azure/active-directory-b2c/saml-service-provider?tabs=windows&pivots=b2c-custom-policy#override-or-set-the-assertion-consumer-url-optional
Within SAML Application Manifest, you'd set the url property of replyUrlsWithType to the ASC URL as shown in the following JSON Example:
"replyUrlsWithType":[
{
"url":"https://samltestapp2.azurewebsites.net/SP/AssertionConsumer",
"type":"Web"
}
],
Thanks,
Akshay Kaushik
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.