您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

Python POST二进制数据

Python POST二进制数据

基本上您所做的是正确的。查看链接到的redmine文档,URL中的点后的后缀似乎表示发布数据的类型(JSON为.json,XML为.xml),这与您获得的响应- 一致Processing by AttachmentsController#upload as XML。我猜可能是文档中存在一个错误,要发布二进制数据,您应该尝试使用http://redmine/uploadsurl而不是http://redmine/uploads.xml

顺便说一句,我强烈建议在Python中使用非常好的和非常受欢迎的HTTP请求库。它比标准库(urllib2)中的库要好得多。它也支持身份验证,但是为了简洁起见,我跳过了它。

import requests
with open('./x.png', 'rb') as f:
    data = f.read()
res = requests.post(url='http://httpbin.org/post',
                    data=data,
                    headers={'Content-Type': 'application/octet-stream'})

# let's check if what we sent is what we intended to send...
import json
import base64

assert base64.b64decode(res.json()['data'][len('data:application/octet-stream;base64,'):]) == data

更新

为了弄清楚为什么它适用于请求而不适用于urllib2,我们必须检查发送内容的差异。要查看此信息,我将流量发送到端口8888上运行的http代理(fiddler):

使用请求

import requests

data = 'test data'
res = requests.post(url='http://localhost:8888',
                    data=data,
                    headers={'Content-Type': 'application/octet-stream'})

我们看

POST http://localhost:8888/ HTTP/1.1
Host: localhost:8888
Content-Length: 9
Content-Type: application/octet-stream
Accept-Encoding: gzip, deflate, compress
Accept: */*
User-Agent: python-requests/1.0.4 cpython/2.7.3 Windows/Vista

test data

并使用urllib2

import urllib2

data = 'test data'    
req = urllib2.Request('http://localhost:8888', data)
req.add_header('Content-Length', '%d' % len(data))
req.add_header('Content-Type', 'application/octet-stream')
res = urllib2.urlopen(req)

我们得到

POST http://localhost:8888/ HTTP/1.1
Accept-Encoding: identity
Content-Length: 9
Host: localhost:8888
Content-Type: application/octet-stream
Connection: close
User-Agent: Python-urllib/2.7

test data

我看不出有任何差异可以保证您观察到不同的行为。话虽如此,http服务器检查User- Agent标头并根据其值改变行为的情况并不少见。尝试一个一个地更改请求发送的标头,使其与urllib2发送的标头相同,然后查看何时停止工作。

python 2022/1/1 18:25:10 有224人围观

撰写回答


你尚未登录,登录后可以

和开发者交流问题的细节

关注并接收问题和回答的更新提醒

参与内容的编辑和改进,让解决方法与时俱进

请先登录

推荐问题


联系我
置顶