@itteam
I just want to say that It's difficult to diagnose the issue without more information or seeing the code in its entirety. However, based on the information you provided, one possibility could be related to how the browser handles cookies.

It's possible that the browser is blocking cookies from being set by the server, and therefore, the session is not being maintained across requests. Since the session token is stored in the session, this would result in the infinite loop of trying to authenticate.

To check if this is the issue, you can try disabling any cookie-blocking extensions or settings in the affected browsers and see if the issue persists.

Another possibility could be related to how the server is handling requests. It's possible that the server is not correctly handling the request headers in Chrome and Edge, which is causing the authentication to fail.

To troubleshoot this, you can use the browser's developer tools to inspect the request and response headers and compare them to what is expected. You can also check the server logs to see if there are any errors or anomalies that may be causing the issue.

Lastly, it's also possible that there is an issue with the FusionAuth configuration or integration with your server. If you've ruled out the above possibilities, you may want to review the FusionAuth documentation and make sure that your setup is correct.

I hope this helps you get started with troubleshooting the issue. Good luck!