未显示Sack API&Quot;附件附件、API、Sack、Quot

2023-09-04 22:52:27 作者:狗与婊绝配i

附件在以下代码中不起作用,response_type也不能正常显示。我也尝试过使用Python的Slack客户端,但发生了完全相同的事情。

def send_message(channel_id, text):
    params = {
        "token" : token, 
        "username" : "NEW BOT",
        "channel" : channel_id,
        "text" : text,
        "response_type": "ephemeral",
        "attachments": [{ "text":"This is some text" }]
    }

    headers = {'content-type': 'application/json'}
    slack_api = 'https://slack.com/api/chat.postMessage'
    requests.get(slack_api, json=params, headers=headers)
    return

@app.route('/', methods=['GET', 'POST'])
def main():
    if sc.rtm_connect():
        sc.rtm_read()
        text = request.args.get("text")
        channel_id = request.args.get("channel_id")
        send_message(channel_id, text)
        return Response(), 200

推荐答案

response_type字段只能在生成响应斜杠命令或消息按钮操作调用的消息时设置。不能使用chat.postMessage直接设置,因为没有要为其显示该临时消息的目标用户的上下文。

chat.postMessage的另一个奇怪之处在于,它目前不像传入的WebHook那样接受JSON。相反,您需要发送application/x-www-form-urlencoded类型的POST参数。更奇怪是,attachments字段实际上不是作为JSON字符串发送的,而是以URL编码的形式发送到参数中。 Apifox 提高团队开发效率

还有一个提示,对于chat.postMessage和其他写入方法,您应该使用HTTP POST而不是GET。