如何在Google课堂课程工作中的作业中向链接材料添加自定义缩略图和标题

时间:2019-11-04 01:39:24

标签: google-classroom

是否可以为从后端发送的分配给链接资料设置自定义缩略图和标题? 我正在使用Google PHP库:

$link = new Google_Service_Classroom_Link();
$link->setUrl('<the url here>');
$link->setTitle('<The title here does not appear>');
$link->setThumbnailUrl('<The thumb here does not work>');

$material = new Google_Service_Classroom_Material();
$material->setLink($link);

$courseWork = new Google_Service_Classroom_CourseWork();
$courseWork->setMaterials([$material]);
$googleServiceClassroom->courses_courseWork->create($courseId, $courseWork);

即使Google_Service_Classroom_Link对象具有这些set方法,它们也无法使用,并且链接显示如下: enter image description here

谢谢

1 个答案:

答案 0 :(得分:2)

Kostiantyn对此功能有要求- https://issuetracker.google.com/issues/36760273

Google尚未提供任何实施时间表。 Google工程师似乎建议了一种解决方法(我没有尝试过自己,因此不确定是否可行)。您可以尝试解决该问题,直到Google提出支持该问题的方法。