我在 Python 3.6.2 中使用 HTTP.client 与 API 通信。
为了上传文件,它需要三个阶段的过程。
我已经成功地使用 POST 方法进行了交谈,并且服务器按我的预期返回了数据。
但是,需要上传实际文件的阶段是 PUT 方法 - 我无法弄清楚如何编写代码以包含指向我存储中实际文件的指针 - 该文件是一个 mp4 视频文件。这是带有我的菜鸟注释的代码片段:)
#define connection as HTTPS and define URL
uploadstep2 = http.client.HTTPSConnection("grabyo-prod.s3-accelerate.amazonaws.com")
#define headers
headers = {
'accept': "application/json",
'content-type': "application/x-www-form-urlencoded"
}
#define the structure of the request and send it.
#Here it is a PUT request to the unique URL as defined above with the correct file and headers.
uploadstep2.request("PUT", myUniqueUploadUrl, body="C:\Test.mp4", headers=headers)
#get the response from the server
uploadstep2response = uploadstep2.getresponse()
#read the data from the response and put to a usable variable
step2responsedata = uploadstep2response.read()
我在这个阶段得到的响应是“错误 400 错误请求 - 无法获取文件信息”。
我确定这与代码的body="C:\Test.mp4"部分有关。
您能否建议我如何正确引用 PUT 方法中的文件?
提前致谢