使用GAS HTML中存储在Google云端硬盘中的图片

时间:2014-10-12 16:22:44

标签: html image google-apps-script google-drive-api

我想知道我是否可以将我在Google云端硬盘上托管的图片(公开分享到网页)整合到HTML页面中。

使用类似的东西不起作用(尽管您可以自己导航到该链接):

<image src="http://docs.google.com/open?id=0ByarjphAWhEvM1p4d0hiTGJOeW8" />

-

我找到了这个答案,但它似乎没有起作用:

AppsScript- Using an image from Google Drive in HtmlService

1 个答案:

答案 0 :(得分:1)

你试过这个吗?它适用于UiApp和HTMLService

https://googledrive.com/host/YOUR_FILE_ID

图片需要在网络上公开分享。

Example :

<img src= "https://googledrive.com/host/0B3qSFd3iikE3TUFFLTZiMWVhYjVkLThhNDctNDdhNC04MjI0LTkzZTc5NDRmNjc1Yw" >

(取自这篇文章:How do I display an image located at google drive in a GAS UI?