环聊Chat API卡未显示图片预览

时间:2018-11-23 15:51:05

标签: javascript google-apps-script google-drive-api hangouts-chat

我开发了一个环聊聊天机器人,其中显示了一张报告某些数据的卡片。

我还想在这张卡上报告一张存储在我的Google驱动器中的图片(.jpg,1663x1225)。问题在于视频群聊聊天不会显示我的图片预览,而是显示以下内容:

enter image description here

我正在使用以下代码

// Responds to a MESSAGE event in Hangouts Chat
function onMessage(event) {
  if (command == "test") {
      
      return  {
        "cards": [
          {
            "sections": [
              {
                "widgets": [
                  {
                    "image": {
                      "imageUrl": "..Picture URL..",
                      "onClick": {
                        "openLink": {
                          "url": "..Picture URL.."
                        }
                      }
                    }
                  }
                ]
              }
            ]
          }
        ]
      }
    }
}

我可以通过单击图像图标来访问图片,但是我想查看预览。 有可能吗?

0 个答案:

没有答案