我正尝试使用与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获取图像,但是结果总是一样。
谢谢大家!