The errors you are encountering, such as ERR_BLOCKED_BY_RESPONSE.NotSameOrigin and ERR_BLOCKED_BY_CLIENT, are related to Cross-Origin Resource Sharing (CORS) issues. CORS is a security feature implemented by browsers to prevent malicious sites from accessing resources from another domain without permission. If the CORS headers are not correctly configured on the server, the browser will block the request, resulting in these errors.
Since you mentioned that the issue persists across different browsers, computers, and network connections, it suggests that the problem may not be on the client side but rather related to the server configuration or recent changes in CORS policies.
To troubleshoot this issue further, you can:
- Check the CORS configuration on the server that is hosting the Excel Online resources to ensure that it allows requests from your domain.
- Review any recent changes made to the server or application that might have affected CORS settings.
- Use browser developer tools to inspect the network requests and responses, particularly looking for the
Access-Control-Allow-Originheader in the response to see if it is set correctly.
If this problem did not exist previously, it is possible that a recent update or change in the server's configuration or the application itself has introduced this issue.
For more detailed guidance on troubleshooting CORS issues, you may refer to the relevant documentation on CORS and Microsoft Entra ID.
References: