這工作得很好:UrlFetchApp愁楚
var resp = UrlFetchApp.fetch("someremotehost/SomeFile.csv");
resp.getResponseCode(); //returns 200
resp.getContentText(); //returns the data
然而,我的本地機器上,我運行XAMPP與SomeFile.csv位於htdocs目錄的/ dev但我不能讓它在localhost工作:
var resp = UrlFetchApp.fetch("localhost/dev/SomeFile.csv");
resp.getResponseCode(); //returns 0.0
resp.getContentText() //returns nothing!
我用鍍鉻擴展郵遞員檢查和http://localhost/dev/SomeFile.csv工作正常,所以爲什麼UrlFetchApp.fetch(「http://localhost/dev/SomeFile.csv」)不起作用?
嘗試在另一臺機器上運行xampp,然後使用ipaddress訪問並查看它是否有效。 – KRR
與此主題有關的以前的問題:[here](http://stackoverflow.com/questions/17440179/unable-to-connect-google-apps-script-to-mysql-through-localhost),[here](http ://stackoverflow.com/questions/13151909/google-apps-script-jdbc-connection-failed)和[here](http://stackoverflow.com/questions/24659033/connection-to-sql-server-2008 -R2-DB-從-A-谷歌擴張)。我確信我已經看到更多,但是現在找不到它們。這是一個常見的誤解,GAS代碼正在「在雲端」運行,並且無法訪問您的計算機。 – Mogsdad