问题:使用Python的urllib2发布数据时,所有数据均经过URL编码,并以Content-Type:application / x-www-form-urlencoded发送。上传文件时,应将Content-Type设置为multipart / form-data,并将内容进行MIME编码。为了解决这个限制,一些精明的编码人员创建了一个名为MultipartPostHandler的库,该库创建了一个OpenerDirector,您可以将其与urllib2一起使用,以自动对包含multipart / form-data的内容进行POST。该库的副本在这里:MultipartPostHandler对Unicode文件不起作用我是Python新手,无法使该库正常工作。我基本上写了以下代码。当我在本地HTTP代理中捕获数据时,我可以看到数据仍然是URL编码的,而不是多部分MIME编码的。请帮助我弄清楚我做错了什么,或者是完成此工作的更好方法。谢谢 :-)FROM_ADDR = 'my@email.com'try: data = open(file, 'rb').read()except: print "Error: could not open file %s for reading" % file print "Check permissions on the file or folder it resides in" sys.exit(1)# Build the POST requesturl = "http://somedomain.com/?action=analyze" post_data = {}post_data['analysisType'] = 'file'post_data['executable'] = datapost_data['notification'] = 'email'post_data['email'] = FROM_ADDR# MIME encode the POST payloadopener = urllib2.build_opener(MultipartPostHandler.MultipartPostHandler)urllib2.install_opener(opener)request = urllib2.Request(url, post_data)request.set_proxy('127.0.0.1:8080', 'http') # For testing with Burp Proxy# Make the request and capture the responsetry: response = urllib2.urlopen(request) print response.geturl()except urllib2.URLError, e: print "File upload failed..."EDIT1:感谢您的回复。我知道ActiveState httplib解决方案(我在上面链接到它)。我宁愿抽象出问题并使用最少的代码来继续使用urllib2。知道为什么不安装和使用开瓶器吗?
添加回答
举报
0/150
提交
取消