任何人都可以告诉我为什么在尝试以调试和常规模式执行时以下脚本无法运行。大约三天前和上一年,我的工作都很好,没有问题,现在挂起了。代码没有变化。好像Google阻止了此脚本。
它从Google工作表中选取开始日期和结束日期。
function Test_getData_Avg() {
var StartDate = SpreadsheetApp.getActiveSheet().getRange("3 Month Data!D2").getValue()
var EndDate = SpreadsheetApp.getActiveSheet().getRange("3 Month Data!C2").getValue()
//Bitcoin Refresh
var Crypto0 = SpreadsheetApp.getActiveSheet().getRange("3 Month Data!B2").getValue()
var cellFunction0 = '=IMPORTHTML("https://coinmarketcap.com/currencies/' + Crypto0 + '/historical-data/?start=' + StartDate + '&end=' + EndDate + '","table",1)';
SpreadsheetApp.getActiveSheet().getRange('3 Month Data!B6').setValue(cellFunction0);
}
预期结果是从CoinmarketCap提取3个月的历史记录并插入表中。