I want to make a HTTP GET request to a site in a different domain than the client site. The final objective is to display a dashboard in the client site for the data that in the source site. The server of the source site is not configured for CORS and therefore it's not possible to make a simple AJAX call using JavaScript.
So I have two options, either to set up a proxy or disable Same Origin Policy for the browser. This dashboard is to be displayed on a dedicated machine on a common display. Is it okay to disable Same Origin Request restriction for the browser since it's only used for this purpose? Thanks.