【google广告自动化系列】完全免费!google广告自动化最强工具介绍
以前的公众号付费文章说过如何进入app script并使用其功能,本次讲解如何使用app script获取谷歌表格数据。
域授权
首先在app script先给google sheet相关的Scopes授权。
"https://www.googleapis.com/auth/spreadsheets",
"https://www.googleapis.com/auth/script.external_request"
接下来我们再让app script授权拿到google账户权限就可以正常运行了。
获取谷歌表格
获取谷歌URL和表格名来拿到表格对象。
//主函数代码
const sheet_name = "XXXXXX"
const sheet_url = "xxxxx"
const spreadsheets = SpreadsheetApp.openByUrl(sheet_url)
const data_sheet = spreadsheets.getSheetByName(sheet_name)
获取表格内容
假设现在有个新的谷歌表格,里面A1到A3单元格的值分别是a,b,c,现在要获取这里面的a,b,c值
获取数据并打印
const ranges = data_sheet.getRange("A1:A3")
const values = ranges.getValues()
Logger.log(values)
Comments NOTHING