使用API​​ Google表格的ReferenceError

时间:2017-05-28 04:48:05

标签: javascript json

我是新手,并且正在按照教程告诉我第一课的内容。我收到了错误:

  

" ReferenceError:" APIPullSheet"未定义(第8行,文件"代码)。

以下第8行是:

  

" APIPullSheet.getRange(' A2:D199&#39)。clearContent();"

代码如下:

{
    // Link the script with a spreadsheet using the unique identifier found in the spreadsheet web address
    var ss = SpreadsheetApp.openById('1COPZmNRB3pd80fMbLXzi2vfTBKoDYb7rk3yCa2-cI4k');
    // Clear Columns A, B, C & D
    APIPullSheet.getRange('A2:D199').clearContent();

    // Pull the JSON data and parse it
    var url = "https://poloniex.com/public?command=returnOrderBook&currencyPair=BTC_XMR&depth=19999";

    var responseAPI = UrlFetchApp.fetch(url);
    var parcedData = JSON.parse(responseAPI.getContentText());
}

我的Google工作表设置正确的名称(APIPull),我的Google表格标识符是正确的。任何帮助非常感谢。提前谢谢。

0 个答案:

没有答案