HTTP方法: POST
请求URI: https://www.googleapis.com/upload/drive/v2/files
以下是Playground生成的请求信息:
POST /upload/drive/v2/files HTTP/1.1
Host: www.googleapis.com
Uploadmypic: image/jpeg
Content-length: 92818
Content-type: image/jpeg
Authorization: Bearer ya29.1.LongKeyHereThatIveReplaceWithThis
从我的硬盘中读取了一个.jpg文件,然后将其保存到我的Google云端硬盘中。保存到我的Google云端硬盘的文件没有名称。名=无标题
如何使用名称创建文件,而不是“无标题”?
答案 0 :(得分:1)
您需要提供文件资源作为POST请求的正文。 File资源包含title属性,即文件名。如果您尝试https://developers.google.com/drive/v2/reference/files/insert#try-it,您将看到准确的格式。