无法使用 slack api files.upload 上传文件

Bas*_*ani 1 python-3.x python-requests slack-api

这个问题可能看起来重复,但我已经尝试了很多但没有成功。我正在尝试使用https://slack.com/api/files.upload API上传 html 文件,但总是遇到以下错误。响应 {'ok': False, 'error': 'no_file_data'}

我浏览了文档[链接] https://api.slack.com/methods/files.upload并尝试了不同的选项,但我仍然得到相同的响应 {'ok': False, 'error': 'no_file_data' }

我还在堆栈溢出中看到了许多类似的问题,但没有一个解决了问题。[链接]使用 Slack API 上传时出现 no_file_data 错误 [链接]如何使用 file.upload 和 requests 将文件上传到 slack

下面是我的代码。

import requests

def post_reports_to_slack(html_report):
    """
    """
    url = "https://slack.com/api/files.upload"

    # my_file = {html_report, open(html_report, 'rb'), 'html'}

    data = {
        "token": bot_user_token,
        "channels": channel_name,
        "file": html_report,
        "filetype": "html"
    }

    # data = "token=" + bot_user_token + \
    #        "&channels=" + channel_name +\
    #        "&file=" + html_report + "&filetype=" + "html"

    response = requests.post(
        url=url, data=data,
        headers={"Content-Type": "application/x-www-form-urlencoded"})
    print("response", response)
    print(response.json())
    if response.status_code == 200:
        print("successfully completed post_reports_to_slack "
                      "and status code %s" % response.status_code)
    else:
        print("Failed to post report on slack channel "
                      "and status code %s" % response.status_code)
Run Code Online (Sandbox Code Playgroud)

请帮助解决问题。

Bas*_*ani 8

我需要在 files.upload API 有效负载中添加“内容”参数和“文件名”参数而不是“文件”参数,现在文件上传到 slack 通道工作正常。

import requests

def post_reports_to_slack(html_report):
    url = "https://slack.com/api/files.upload"

    with open(html_report) as fh:
        html_data = fh.read()

    data = {
        "token": bot_user_token,
        "channels": "#channel_name",
        "content": html_data,
        "filename": "report.html",
        "filetype": "html",
    }

    response = requests.post(
        url=url, data=data,
        headers={"Content-Type": "application/x-www-form-urlencoded"})
    if response.status_code == 200:
        print("successfully completed post_reports_to_slack "
                      "and status code %s" % response.status_code)
    else:
        print("Failed to post report on slack channel "
                      "and status code %s" % response.status_code)
Run Code Online (Sandbox Code Playgroud)