0

我在 Google Picker 中使用 DocsUploadView() 将文档上传到 Google Drive。但是,我想在上传时将内容添加到“描述”和“indexableText”字段。有什么简单的方法可以做到这一点?

4

1 回答 1

1

Picker API 不支持在上传过程中编辑文件元数据,但您可以在上传后使用 Drive API 更新文档:

https://developers.google.com/drive/v1/reference/files/update

Picker 将在上传结束时为您提供文档的 ID,这是 API 调用的唯一必需参数。

于 2012-06-14T02:16:53.553 回答