You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the case for sso_start.php, sso_end.php, teams_tab.php.
However, the external servers do not reply with a Access-Control-Allow-Origin header. Therefore the files should not be requested by using a CORS statement. By not using the CORS statement, the file request inside the <script> would be considered as Same-Origin-Policy exception.
Am I doing something wrong here or can you fix this issue?
The text was updated successfully, but these errors were encountered:
Hello,
I have a problem with the SSO login. When I click the button "Login with Microsoft 365", the sso_start.php page shows up, but nothing else happens.
After further inspection I noticed, that the files neccessary for the login are requested by using crossorigin="anonymous".
Example:
echo "<script src="https://statics.teams.microsoft.com/sdk/v1.9.0/js/MicrosoftTeams.min.js\" crossorigin="anonymous"></script>";
echo "<script src="https://secure.aadcdn.microsoftonline-p.com/lib/1.0.17/js/adal.min.js\" crossorigin="anonymous"></script>";
This is the case for sso_start.php, sso_end.php, teams_tab.php.
However, the external servers do not reply with a Access-Control-Allow-Origin header. Therefore the files should not be requested by using a CORS statement. By not using the CORS statement, the file request inside the <script> would be considered as Same-Origin-Policy exception.
Am I doing something wrong here or can you fix this issue?
The text was updated successfully, but these errors were encountered: