I'm having a problem with the JSON return, and I've researched and found no solution. I have the following requisition:
var url = 'http://zcash.flypool.org/api/miner_new/t1UjazwJJnrUGoPh4GJYJ9FV6sYFzYg6H63?callback=?';
$.getJSON(url, function(data){
alert(data);
});
And gives the following error:
SyntaxError: missing ; before statement[Learn More] t1UjazwJJnrUGoPh4GJYJ9FV6sYFzYg6H63:1:10
Can anyone help me solve this problem, or give me a light on how to solve it?
Thank you!