当我创建脚本副本以将代码分支到另一个项目时,我仍然试图从somehow 'loosing' a Google Apps Script恢复...我的想法是尝试通过驱动器API下载旧版本的Google Apps脚本,但this page表明也许这不可能。
API无法通过版本控制,发布或执行脚本等操作。
所以无论如何我都尝试过这个错误......
<HttpError 400 when requesting
https://www.googleapis.com/drive/v2/files/..snipped../revisions?alt=json
returned "File does not support revisions">
那么,没有机制可以下载以前版本或Google Apps脚本的“修订版”吗?我希望能够访问script.google.com界面中显示的“修订版1”:
仅供参考,Apps Script API可以从以前的版本号获取项目文件:https://developers.google.com/apps-script/api/reference/rest/v1/projects/getContent
如果你想在Apps Script CLI中看到这个,就像clasp pull 3
一样,我确信我可以添加这个功能。 https://github.com/google/clasp/只需提交一个新问题。
这有点手册但是:
例如,如果您的库被称为“MyOldCode”,请在新脚本中包含这样的代码:
function getOldCode() {
var a = MyOldCode.anExampleFunction()
}
将断点放在“var a”行下面,使用调试器运行getOldCode(),然后单步执行anExampleFunction()。这将打开旧代码的一个文件,允许您将其复制并粘贴到其他位置。
然后你可以拼凑v1。
编辑2019-04-11:还有Romain's function for accessing old versions。