我们正在销售 Google 电子表格。客户购买后,我们需要将文件复制到他们的帐户。费时费力地弄清楚要使用哪些 API 以及它是如何工作的。
问问题
1666 次
2 回答
0
用新文件夹修补现有文件:
PATCH https://www.googleapis.com/drive/v2/files/<fileId>
Authorization: Bearer <accessToken>
{ "parents": [{ "id": "<new folder's id>" }] }
看看https://developers.google.com/drive/v2/reference/files/patch
于 2013-07-11T13:15:31.077 回答