如何在一个频道中分享上传的图片? [英] How to share uploaded image in a channel?

查看:0
本文介绍了如何在一个频道中分享上传的图片?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用https://slack.com/api/files.upload将图片上传到SLACK 未在请求中指定channels字段。 我可以在Web界面中看到图像。在将来的某个时候,应该通过什么API调用来在某个渠道共享上传的图片?

我尝试上传一张图片,Slak的响应是:

 {
    "ok": true,
    "file": {
        "id": "FHJ9QTX1V",
        "created": 1554115093,
        "timestamp": 1554115093,
        "name": "scaled_IMG-20190324-WA0002.jpg",
        "title": "scaled IMG-20190324-WA0002",
        "mimetype": "image/jpeg",
        "filetype": "jpg",
        "pretty_type": "JPEG",
        "user": "UGRR6FCF7",
        "editable": false,
        "size": 217356,
        "mode": "hosted",
        "is_external": false,
        "external_type": "",
        "is_public": false,
        "public_url_shared": false,
        "display_as_bot": false,
        "username": "",
        "url_private": "https://files.slack.com/files-pri/TGQU3SCHF-FHJ9QTX1V/scaled_img-20190324-wa0002.jpg",
        "url_private_download": "https://files.slack.com/files-pri/TGQU3SCHF-FHJ9QTX1V/download/scaled_img-20190324-wa0002.jpg",
        "thumb_64": "https://files.slack.com/files-tmb/TGQU3SCHF-FHJ9QTX1V-fa34003fce/scaled_img-20190324-wa0002_64.jpg",
        "thumb_80": "https://files.slack.com/files-tmb/TGQU3SCHF-FHJ9QTX1V-fa34003fce/scaled_img-20190324-wa0002_80.jpg",
        "thumb_360": "https://files.slack.com/files-tmb/TGQU3SCHF-FHJ9QTX1V-fa34003fce/scaled_img-20190324-wa0002_360.jpg",
        "thumb_360_w": 360,
        "thumb_360_h": 270,
        "thumb_480": "https://files.slack.com/files-tmb/TGQU3SCHF-FHJ9QTX1V-fa34003fce/scaled_img-20190324-wa0002_480.jpg",
        "thumb_480_w": 480,
        "thumb_480_h": 360,
        "thumb_160": "https://files.slack.com/files-tmb/TGQU3SCHF-FHJ9QTX1V-fa34003fce/scaled_img-20190324-wa0002_160.jpg",
        "thumb_720": "https://files.slack.com/files-tmb/TGQU3SCHF-FHJ9QTX1V-fa34003fce/scaled_img-20190324-wa0002_720.jpg",
        "thumb_720_w": 720,
        "thumb_720_h": 540,
        "thumb_800": "https://files.slack.com/files-tmb/TGQU3SCHF-FHJ9QTX1V-fa34003fce/scaled_img-20190324-wa0002_800.jpg",
        "thumb_800_w": 800,
        "thumb_800_h": 600,
        "thumb_960": "https://files.slack.com/files-tmb/TGQU3SCHF-FHJ9QTX1V-fa34003fce/scaled_img-20190324-wa0002_960.jpg",
        "thumb_960_w": 960,
        "thumb_960_h": 720,
        "thumb_1024": "https://files.slack.com/files-tmb/TGQU3SCHF-FHJ9QTX1V-fa34003fce/scaled_img-20190324-wa0002_1024.jpg",
        "thumb_1024_w": 1024,
        "thumb_1024_h": 768,
        "image_exif_rotation": 1,
        "original_w": 1040,
        "original_h": 780,
        "permalink": "https://autolainen.slack.com/files/UGRR6FCF7/FHJ9QTX1V/scaled_img-20190324-wa0002.jpg",
        "permalink_public": "https://slack-files.com/TGQU3SCHF-FHJ9QTX1V-3366c52c9c",
        "comments_count": 0,
        "is_starred": false,
        "shares": {},
        "channels": [],
        "groups": [],
        "ims": [],
        "has_rich_preview": false
    }
}

,然后尝试使用/api/chat.postMessage共享图像:

{
    "channel": "CH68ZSHFA",
    "text": "test",
    "blocks": [
        {
            "type": "section",
            "text": {
                "type": "plain_text",
                "text": "test"
            }
        },
        {
            "type": "image",
            "image_url": "https://autolainen.slack.com/files/UGRR6FCF7/FHJ9QTX1V/scaled_img-20190324-wa0002.jpg",
            "alt_text": "attachment"
        }
    ],
    "as_user": false,
    "username": "Client name"
}

我使用了来自文件描述的url_privateurl_private_downloadpermalinkpermalink_public字段的url,但得到了相同的响应:

{
    "ok": false,
    "error": "invalid_blocks",
    "response_metadata": {
        "messages": [
            "[ERROR] downloading image failed [json-pointer:/1/image_url]"
        ]
    }
}

api

遗憾的是,在文件上载后,没有官方推荐答案方法在您的工作区上共享该文件。因此,如果您在最初的files.upload请求中未包含频道,则没有正式方法可在以后共享该文件。

但是有一个名为files.share的非官方API方法,它就具有这种功能。它可以完美地工作,但您需要旧版令牌才能使用它,因此这可能不是您的解决方案。

在Slack上使用图像的另一种方法是将其包含在消息中(正如您在代码示例中尝试的那样)。从技术上讲,这与在Slack上共享文件不同,因为它只适用于图像,为用户提供的功能有限。

它会起作用,但前提是您的图像URL是公共的,因为chat.postMessage只使用指向图像的公共URL,而Slack上的文件默认情况下是私有的(这意味着您需要在任何请求中提供授权才能从Slack外部访问该文件)。

要获取文件的公共URL,可以在上传后调用API方法files.sharedPublicURL。您将获得一个公共URL作为响应,然后您可以使用该URL在您的消息中包含该图像。

这篇关于如何在一个频道中分享上传的图片?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆