2016-09-04 34 views
2

我一直在尝试通过使用python的API上传文件到backblaze。上传图像到backblaze通过使用python的API

以下是我使用的代码片段。

import json 
import urllib2 
import hashlib 

upload_url = "" # Provided by b2_get_upload_url 
upload_authorization_token = "" # Provided by b2_get_upload_url 
file_data = "Now, I am become Death, the destroyer of worlds." 
file_name = "oppenheimer_says.txt" 
content_type = "text/plain" 
sha1_of_file_data = hashlib.sha1(file_data).hexdigest() 

headers = { 
    'Authorization' : upload_authorization_token, 
    'X-Bz-File-Name' : file_name, 
    'Content-Type' : content_type, 
    'X-Bz-Content-Sha1' : sha1_of_file_data 
} 
request = urllib2.Request(upload_url, file_data, headers) 

response = urllib2.urlopen(request) 
response_data = json.loads(response.read()) 
response.close() 

它工作正常,并且能够通过Web UI访问文件。

但是当我试图通过修改代码如下面给出上传图片下面

File "/usr/lib/python2.7/httplib.py", line 848, in _send_output 
msg += message_body 
UnicodeDecodeError: 'ascii' codec can't decode byte 0xff in position 0:  ordinal not in range(128) 

给出(所有其它部件与上述代码相同)

with open('test.jpg', 'rb') as content_file: 
    file_data = content_file.read() 
file_name = "test.jpg" 
content_type = "b2/x-auto" 

它产生一个错误它工作得很好,当我base64编码的图像内容,但图像不能通过公共链接访问。还有其他的方法可以克服吗?

+0

尝试使用的编解码器库。 'import codecs',然后使用codecs.open('test.jpg','rb',encoding ='utf-8')将open('test.jpg','rb')as..'改为''。 ' – n1c9

+0

@ n1c9当我尝试它得到另一个错误,因为UnicodeDecodeError:'utf8'编解码器无法解码位置0字节0xff:无效的开始字节' – midhun

回答

0

我只是解决了这个利用requests

response = requests.post(upload_url, headers=headers, data=file_data)