是否可以为从后端发送的分配给链接资料设置自定义缩略图和标题? 我正在使用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
方法,它们也无法使用,并且链接显示如下:
谢谢
答案 0 :(得分:2)
Kostiantyn对此功能有要求- https://issuetracker.google.com/issues/36760273
Google尚未提供任何实施时间表。 Google工程师似乎建议了一种解决方法(我没有尝试过自己,因此不确定是否可行)。您可以尝试解决该问题,直到Google提出支持该问题的方法。