在带有 Instagram iOS 浏览器的 Google WebApps 中返回“未定义”

问题描述 投票:0回答:1

我在使用 Instagram iOS 浏览器打开 Google WebApps 时遇到问题。下面的代码显示了一个简单的示例


function doGet(e) {

  return HtmlService.createHtmlOutput('This Page works!');

}

它适用于我测试过的所有浏览器(iOS Instagram 浏览器除外)。附上错误截图。

我也尝试将 HtmlService 更改为 ContentService 并且它有效,所以我猜测这是 HtmlService 的问题。



function doGet(e) {

  return ContentService.createTextOutput("TESTE!");

}

如果有人知道如何解决这个问题,我将不胜感激。谢谢

(https://i.stack.imgur.com/YyGNC.jpg)

(https://i.stack.imgur.com/CDPUy.jpg)

google-apps-script web-applications instagram
1个回答
0
投票

我遇到了类似的问题,Google 脚本在 Instagram 应用程序中使用时返回“未定义”错误。您找到解决这个问题的方法了吗?

© www.soinside.com 2019 - 2024. All rights reserved.