使用Google Apps脚本如何点击任何网址?
例如,我希望应用程序脚本中的代码与我在下面提供的java代码工作方式相同。
URL url = new URL("http://google.com");
URLConnection conn = url.openConnection();
conn.connect();
答案 0 :(得分:0)
您应该使用URL Fetch服务连接到网址。
try {
var response = UrlFetchApp.fetch("http://www.google.com/");
Logger.log(response.getResponseCode());
Logger.log(response.getContentText());
} catch (e) {
Logger.log(e.toString());
}