在Slack消息中,如何在旧版作者等文字旁边放置图片?

时间:2019-03-14 00:12:52

标签: slack

通过api将消息发布到松弛状态时,legacy api具有author_title和author_icon

Author Icon and Author Name

我如何格式化newer layout block style的json格式,以将图像放置在某些文本旁边?

我尝试了图像和节块,但该节在图像下方而不是在右侧。

{
  "channel": "111122222",
  "blocks": [
    {"type": "image",
    "block_id": "image4",
    "image_url": "http://placekitten.com/20/20",
    "alt_text": "Author Icon"
    },
    {
      "type": "section",
      "text": {
        "type": "mrkdwn",
        "text": "<http://example.com|Author Name>"
      }
    }
  ]
}

Result

0 个答案:

没有答案