Thank you for the response. I tried with the redirect workaround as you suggested but it does not help. It gives the same "Request Timed Out" error. I am sharing the below query, if you could please look into the same and help:
<!DOCTYPE html>
<html>
<head>
<style>
#f2dj__table table {
font-size: 12pt;
font-weight:bold;
}
#f2dj__table th {
background: orange;
}
</style>
var f2dj_sskey='1gOEU8Oo9rPznYHIEkSSOpH0CyUqnvOVeDQTpBo1ERv0'
var f2dj_sheet=752311914
var f2dj_authkey='CITwr80K'
google.charts.load('current', {'packages' : ['table']});
//google.load('visualization', '1', {'packages':['table']});
function f2dj_getData(){
var q='select A,C,D,E'
var query = new google.visualization.Query(url);
query.send(f2dj_displayTable);
}
function f2dj_displayTable(response){
if (response.isError()) {
alert('Error in query: ' + response.getMessage() + ' ' + response.getDetailedMessage());
return;
}
var data = response.getDataTable();
visualization = new google.visualization.Table(document.getElementById('f2dj__table'));
visualization.draw(data, null);
var table = new google.visualization.Table(document.getElementById('f2dj__table'));
var formatter = new google.visualization.ColorFormat();
formatter.addRange(-20000, -0, 'white', '#e74c3c');
formatter.addRange(0, 20000, 'white', '#27ae60');
formatter.format(data, 3); // Apply formatter to second column
table.draw(data, {allowHtml: true, showRowNumber: true, width:'100%', height:'100%' });
}
//google.setOnLoadCallback(f2dj_getData)
google.charts.setOnLoadCallback(f2dj_getData)
</script>
</head>
<body>
<div id="f2dj__table">
</div>
<!-- END: f1dj Google Spreadsheet/viz api table insert -->
</body>
</html>
-----------------------------------------------------------------------------
I am just sharing one query. All these were working perfectly fine till 5-6 days before. Only now they are throwing the "Request Timed Out" error. Request you to please look into the same. Thanks.