Hello @Crystal Cary ,
I am not sure where your app is registered and if it is a B2C tenant scenario but in a B2C scenario, this would happen if tenantId parameter is not passed within the request. Since tenantId is not passed hence the B2C signin policy objects from the policy cache in the backend could not be fetched and the silent sign in request that is made by the application goes in a loop and errors out eventually. You would need to check the request generated within the application . This can be collected to understand more on what request was initiated if this is a web app. In case of a non-webapp , you may have to setup breakpoints within the app and capture HTTP request response. to analyze it . You can try to troubleshoot it using Fiddler/fiddlercap. I would suggest you to use fiddlercap to collect a Http trace on your machine where the request originates . The following is the step by step from the original fiddlercap page .
Step-by-step guide
- Download Telerik FiddlerCap
- Close all instances of Internet Explorer. Using Firefox? Click here.
- Run the FiddlerCapSetup.exe file.
- FiddlerCap will start automatically when the installer completes.
- Unless your debugging buddy has asked you to skip this step:
- Inside FiddlerCap, click the Clear Cookies button and then the Clear Cache button.
- Inside FiddlerCap, click the 1. Start Capture button.
- A new Internet Explorer window will appear. Use Internet Explorer's address bar to go to whatever site you need and reproduce the problem.
- To add a screenshot to your capture, press the Screenshot button inside FiddlerCap. To add a comment, click the Flag button.
- Inside FiddlerCap, click the 2. Stop Capture button.
- Click the 3. Save Capture button. Save the .SAZ file to your desktop.
- Email the .SAZ file from your desktop to your debugging buddy.
You can download full version of fiddler using https://www.telerik.com/fiddler . Within the fiddler trace you should be able to see the details of the request body and corresponding response. You can also replay the request adding TenantId parameter and that should give you more insights. In case you are still unable to get this fixed, please open a ticket with Microsoft . If you have any trouble opening a support ticket , please send us an email on azcommunity[at]microsoft[dot]com and we will help you further.
Hope this helps In case the information provided in this post is helpful , please do accept it as answer so that this can be helpful to other community members searching for similar queries.
Thank you.