Google DataStudio:在我目前正在开发的新连接器中重复使用现有连接器
Google DataStudio: Reuse existing connectors inside a new connector which I'm currently developing
我需要从“Google Sheets”和“Analytics”中提取数据,为此我创建了一个连接器,我想知道是否可以重新使用现有的“Google Analytics”和“Google 表格”由 DataStudio 提供。
目前无法在社区连接器内重复使用本机连接器。
但是,您可以使用 Apps Script Advanced Services 获得相同的结果。 Data Studio 中的大多数本机连接器在 Apps 脚本中都有相应的高级服务。
对于您的特定用例,您可以使用 Analytics Services and the Sheets Service. Before using them in your code, make sure that you follow the instructions to enable the advanced services. The Fusion Table Community Connector 是一个开源示例,展示了如何在社区连接器中使用高级服务。
我需要从“Google Sheets”和“Analytics”中提取数据,为此我创建了一个连接器,我想知道是否可以重新使用现有的“Google Analytics”和“Google 表格”由 DataStudio 提供。
目前无法在社区连接器内重复使用本机连接器。
但是,您可以使用 Apps Script Advanced Services 获得相同的结果。 Data Studio 中的大多数本机连接器在 Apps 脚本中都有相应的高级服务。
对于您的特定用例,您可以使用 Analytics Services and the Sheets Service. Before using them in your code, make sure that you follow the instructions to enable the advanced services. The Fusion Table Community Connector 是一个开源示例,展示了如何在社区连接器中使用高级服务。