Google表格返回已发布文档的随机版本

时间:2018-11-29 11:00:32

标签: google-sheets

Google表格允许每个人以CSV格式阅读已发布的文档。我编辑了文档,然后重复执行以下CLI命令,每次都得到不同的内容(文档版本)。仅在5分钟后,它便开始稳定地生成实际内容。

问:有没有办法通过该链接而不是随机的方式检索实际信息?

# the curl command is like this
# the URL is picked from the "publish to the web" UI dialog
curl "https://docs.google.com/spreadsheets/d/e/SOME_COMPLEX_ID/pub?output=csv"

背景:想将表格作为一个小型数据库来尝试。

1 个答案:

答案 0 :(得分:0)

我注意到使用查询可以避免这种(缓存?)随机性。这样可以解决问题,并且更改会立即应用。

curl "https://docs.google.com/spreadsheets/d/SHEET_ID/gviz/tq?gid=0&tqx=out:csv&tq=select%20A,B,C,D"