无法使用Google Apps脚本将图像添加到表单

时间:2019-06-18 14:36:46

标签: google-apps-script google-form

我正尝试使用与Google Reference中的代码相同的代码,使用Google Apps脚本将图像发布到表单中,并且不起作用:

// Open a form by ID and add a new image item
var form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');
var img = UrlFetchApp.fetch('https://www.google.com/images/srpr/logo4w.png');
form.addImageItem()
    .setTitle('Google')
    .setHelpText('Google Logo') // The help text is the image description
    .setImage(img);

它过去曾经可以使用,但是现在,如果您尝试执行此操作,它将在最后一行失败:

function myFunction(){
    var form = FormApp.openById('1fCraIkgem06Cu4M8EkbbwYi4uQL7S290Ev_-qLa_3xE');
    var img = UrlFetchApp.fetch('https://www.google.com/images/srpr/logo4w.png');
    form.addImageItem()
        .setTitle('Google')
        .setHelpText('Google Logo') // The help text is the image description
        .setImage(img);
}

还有错误...

  

没有惯例的惯例。 (línea7,archivo   “ Encuestas”)Cerrar

英语:更新表格时数据无效。 (第7行,文件...)

这非常令人沮丧,因为我过去曾经做过无数次此举,但现在却无法正常工作。有人有同样的问题吗?

我也尝试过从GoogleDrive获取图像,但是结果总是一样。

谢谢大家!

1 个答案:

答案 0 :(得分:0)

这是一个已报告的错误。您可以通过https://issuetracker.google.com/issues/135217119

跟踪进度。