Google Apps 脚本在退出时不显示
Google Apps Script not showing up when signed out
我正在尝试使用 Google Apps 脚本将来自 GeoCharts 的交互式地图放到我的网站上。这些地图在我登录 Google 帐户时显示,但在我注销时不显示。我该如何解决这个问题?
这是我使用的 doGet
,prate
是项目中的一个 HTML 文件。然后我将该项目部署为 Web 应用程序并选择
Execute the app as: 'Me'
Who has access to the app: "Anyone'
function doGet() {
return HtmlService.createHtmlOutputFromFile('prate').setSandboxMode(HtmlService.SandboxMode.IFRAME);
}
我注销时页面上没有出现错误,只是不显示而已。这是页面的 link:https://sites.google.com/site/christinegbraun/data
确保您确实在网站中添加了 /exec
而不是 /dev
还要确保每个人都可以通过在设置中选择来访问该应用程序
谁有权访问该应用程序:anyone, even anonymous
我正在尝试使用 Google Apps 脚本将来自 GeoCharts 的交互式地图放到我的网站上。这些地图在我登录 Google 帐户时显示,但在我注销时不显示。我该如何解决这个问题?
这是我使用的 doGet
,prate
是项目中的一个 HTML 文件。然后我将该项目部署为 Web 应用程序并选择
Execute the app as: 'Me'
Who has access to the app: "Anyone'
function doGet() {
return HtmlService.createHtmlOutputFromFile('prate').setSandboxMode(HtmlService.SandboxMode.IFRAME);
}
我注销时页面上没有出现错误,只是不显示而已。这是页面的 link:https://sites.google.com/site/christinegbraun/data
确保您确实在网站中添加了 /exec
而不是 /dev
还要确保每个人都可以通过在设置中选择来访问该应用程序
谁有权访问该应用程序:anyone, even anonymous