本文介绍了如何以编程方式创建我拥有的Google Apps脚本项目列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Google Apps脚本项目可以是独立的,可以绑定到Google应用程序(文档,表格),Web Apps或Google Sites小工具.我如何才能从一个角度找到我所有的所有项目?

Google Apps Scripts projects could be standalone, bounded to Google apps (Docs, Sheets), Web Apps or Google Sites gadgets. How could I find all the projects owned by me from a single point?

类文件课程文档电子表格类幻灯片类网站脚本没有提供一种方法来知道相应的容器是否有绑定到它们的脚本项目.

The Class File, Class Document, Class Spreadsheet, Class Slide and Class Sites from Apps Script doesn't include a method to know if the corresponding container has a Script project bounded to them.

在Google云端硬盘中仅显示独立的脚本项目.

Only standalone Script projects are shown in Google Drive.

更新:

现在(2018年),可以在 https:/上找到自己拥有的所有有界和独立的Apps脚本项目/script.google.com ,并且可以通过 Apps Script API ,但我不知道如何使用它来创建我拥有的项目列表.

Nowadays (2018) it's possible to find all the Apps Script projects, bounded and standalone, owned by oneself on https://script.google.com and it's possible to access these projects programmatically through Apps Script API but I don't know how to use it to create a list of projects owned by me.

clasp 具有命令 clasp list ,但只列出了10个最新项目.

clasp has the command clasp list but it list only the 10 most recent projects.

参考

相关问题与解答

  • I have scripts in one of spreadsheet document and cannot locate the script
  • No scripts found

推荐答案

没有找到所有自己拥有的脚本的好方法,因为正如您指出的那样,搜索驱动器将仅返回独立脚本.不过,您可以找到您授权的所有脚本,并撤消它们的权限.

There is not good way to find all script OWNED by you because as you pointed out searching drive will only return standalone scripts. You can find all scripts Authorized by you though and revoke permissions on them.

在云端硬盘设置下:管理应用.

Under Drive settings: Manage Apps.

也根据您的google帐户设置->帐户权限 https://security.google.com/settings/security/permissions?pli=1

Also under you google Account Settings->Account permissionshttps://security.google.com/settings/security/permissions?pli=1

这篇关于如何以编程方式创建我拥有的Google Apps脚本项目列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 13:08