以下是框 api 2.0 中文件上传中表单 POST 数据的正确示例吗?文档说“文件名”表单字段是一个字符串,但是当在 python 中发送帖子数据时,您需要在帖子中实际发送文件内容。那么, content-disposition: form-data 下面的行是命名“文件名”字段并包含文件内容的正确方法吗?
Content-type: multipart/form-data, boundary=AaB03x
Content-length: 142
Authorization: BoxAuth api_key=MY_API_KEY&auth_token=MY_AUTH_TOKEN
--AaB03x
content-disposition: form-data; name="filename"; filename="test.txt"
Content-type: text/plain
testing box api 2.0
--AaB03x--