我正在尝试使用 google 表格 API。但是有引用错误

I'am trying to use the google Forms API. But there is a reference error

我正在尝试使用 Google 表格 API。当我尝试使用 FormApp.openByUrl() 时。但是我收到 ReferenceError。这是我的代码:

我已经尝试导入 API。但是没用。

<html>
<head>
    <title>Test</title>
    <script src="https://apis.google.com/js/api.js"></script>
</head>
<body>
    <script>
        var form = FormApp.openByUrl('https://docs.google.com/forms/d/SOME-FORM/edit');
        var formResponses = form.getResponses();
    </script>
</body>
</html>

控制台输出:

Uncaught ReferenceError: FormApp is not defined
    at (index):9
(anonymous) @ (index):9

它应该什么也不做,但它抛出了一个异常。

您尝试使用的 API 用于通过脚本编辑器嵌入到 Google 表单中的脚本。

它与用于从其他网站连接到 Google API 的脚本 https://apis.google.com/js/api.js 无关。