使用Podio API - 文件上传操作时出错

问题描述 投票:0回答:4

我正在尝试使用 Python 3.7 使用文件上传 POST 操作(“https://api.podio.com/file/”)将文件上传到 Podio。请在下面找到有关代码的详细信息。

        # File Upload
        fin = open(input_path, 'rb')
        
        files = {'source': ('report.txt', fin, 'text/plain')}
        uploadResponse = requests.post(PODIO_BASE_URL + "file/", files=files,
                                       headers=bearerHeader)

我确实确保遵循 Podio API 文档中提到的合同

  1. 使用 multipart/form-data 作为内容类型
  2. 将有效负载内容指定为字节数组的“源”参数
  3. 指定“文件名”参数(上述代码中元组中的第一个值)。

执行此操作时出现以下错误:-

File upload reponse: {'error_parameters': {}, 'error_detail': None, 'error_propagate': False, 'request': {'url': 'http://api.podio.com/file/', 'query_string': '', 'method': 'POST'}, 'error_description': 'Invalid value null (null): must be non empty string', 'error': 'invalid_value'}

请在下面找到我使用准备方法捕获的发布请求(我故意从下面的代码片段中删除了承载值)。

req.prepare()
<PreparedRequest [POST]>
special variables:
function variables:
body: b'--5e83f2bb93a03c8b128f6158c00863c4\r\nContent-Disposition: form-data; name="source"; filename="report.txt"\r\n\r\ntesting\r\n--5e83f2bb93a03c8b128f6158c00863c4--\r\n'
headers: {'Authorization': 'Bearer ', 'Content-Length': '155', 'Content-Type': 'multipart/form-data; boundary=5e83f2bb93a03c8b128f6158c00863c4'}
hooks: {'response': []}
method: 'POST'
path_url: '/file/'
url: 'https://api.podio.com/file/'
_body_position: None
_cookies: <RequestsCookieJar[]>
_encode_files: <function RequestEncodingMixin._encode_files at 0x0000018437560E18>
_encode_params: <function RequestEncodingMixin._encode_params at 0x0000018437560D90>
_get_idna_encoded_host: <function PreparedRequest._get_idna_encoded_host at 0x000001843756C488>

对此的任何指示将不胜感激。预先感谢您的帮助。

python-3.x python-requests podio
4个回答
1
投票

你可以试试

filename = 'report.txt'

data = {
    'source': open(filename, 'rb').read(),
    'filename': filename
}

headers = bearerHeader
headers['Content-Type'] = 'multipart/form-data'

uploadResponse = requests.post(
    PODIO_BASE_URL + "file/", 
    data=data, 
    headers=headers,
    timeout=1200
)

1
投票

我在这个问题上卡住了一段时间,只有 500 个神秘的错误需要处理。我最终将使用

pypodio2
发送的原始 HTTP 请求与我发送的内容进行了比较,并确定
Content-Type
请求的一部分丢失了
multipart/form-data
。下面的内容对我有用(其中
client.access_token
是我的 OAuth2 令牌,
client.base_url
是我的域,
file_path
是文本文件的本地路径)。希望这对某人有帮助。

headers = { "authorization": f"OAuth2 {client.access_token}" }
files = { 
    "source": (file_path, open(file_path, 'rb'), "text/plain; charset=utf-8"), 
    "filename": (None, "my_file.txt", "text/plain; charset=utf-8") 
}
response = requests.post(f"{client.base_url}/file", headers=headers, files=files)

0
投票

用于文件上传的 Podio API 文档说它需要两个参数,并且 requests 使用

files
参数来处理它。

我建议尝试这个:

filename = 'report.txt'

multipart_form_data = {
    'source': (filename, open(filename, 'rb')),
    'filename': (filename, None)
}

uploadResponse = requests.post(
    PODIO_BASE_URL + "file/", 
    files=multipart_form_data, 
    headers=bearerHeader,
    timeout=1200
)

0
投票

我终于在 Podio 上实现了这个功能。这是有效的语法:

my_file = open("<filepath/name>", "rb")
url = 'https://api.podio.com/file/v2'
headers = {
                'authorization': 'OAuth2 <cookie>'
          }
self.data = {
                'filename': <"filename">
            }
self.files = {
                'source': (<"filename">, my_file, 'file')
            }
response = requests.post(url, data=self.data, files=self.files, headers=headers)

my_file.close()
© www.soinside.com 2019 - 2024. All rights reserved.