我有一个Google电子表格,其中列有一列图像文件名(例如tree01
、tree02
、car01
、building01
等)。我有一个Firebase存储,其中包含一个同名的图像文件列表(例如,tree01
、tree02
、car01
、building01
等)。
如何在电子表格中获得文件名?然后使用文件名获取Firebase存储中的下载URL,然后将下载URL放回电子表格中?
我知道如何使用Google与电子表格进行r/w。我在网上搜索过使用Google,使用“”并从Firebase获得下载URL,但我不知道如何将它们组合在一起。请帮帮忙。
发布于 2016-10-10 01:52:09
在学习了一些链接之后,我解决了我的问题。并为我的案子提供有用的链接。
在google脚本(.gs)和google应用程序(.html) (https://developers.google.com/apps-script/guides/html/communication)之间传递数据
用于web应用程序的防火墙存储教程(https://github.com/firebase/quickstart-js)
用于google脚本的firebase数据库教程(https://sites.google.com/site/scriptsexamples/new-connectors-to-google-services/firebase)
我现在可以在firebase存储、firebase数据库和google电子表格之间进行通信。
https://stackoverflow.com/questions/39941903
复制相似问题