I try to create my own website with values from another website. These values are JSON values. So I try to get these values with jQuery getJSON:
$.getJSON( "https://www.weatherlink.com/embeddablePage/summaryData/db22c5a778f14c5da538dc6f3b3ddc0d?ts=1555852879023?callback=?", function( json ) {
console.log( "JSON Data: " + json );
});
But I get the error that my request was blocked because of Cross-Origin. So is there no chance to get these values to my website?
I have no access to the server with the json values...
Thanks for your help Marius