使用javascript更新Google云端硬盘中的文件说明

时间:2016-09-21 12:29:47

标签: google-api google-drive-api authorization

我正在尝试更新所有我的谷歌驱动器图像说明。我可以访问谷歌驱动器,我可以用

获得结果
gapi.client.drive.files.list({
        'pageSize': 1000,
        'fields':'files,nextPageToken',
        'q':query,
        'orderBy':'name',
        'access_token':accesToken
    });

之后我想更新所有文件描述,但我得到了我需要登录的结果。我正在使用OAuth 2.0 Playground,允许我的所有驱动器。

gapi.client.drive.files.update({
        'fileId': fileid,
        'access_token':accesToken,
        'resource': body
    });

知道如何登录或我做得不对吗?

1 个答案:

答案 0 :(得分:0)

尝试仔细检查您是否正确执行了步骤here以使用OAuth授权您的请求,同时确保在应用程序中使用正确的范围。以下是link,它将向您解释每个范围的含义和目的。

现在要更新您的文件,这个documentation可以帮助您。本文档的v2 version有一个更新文件的Javascript代码示例。

/**
 * Update an existing file's metadata and content.
 *
 * @param {String} fileId ID of the file to update.
 * @param {Object} fileMetadata existing Drive file's metadata.
 * @param {File} fileData File object to read data from.
 * @param {Function} callback Callback function to call when the request is complete.
 */
function updateFile(fileId, fileMetadata, fileData, callback) {
  const boundary = '-------314159265358979323846';
  const delimiter = "\r\n--" + boundary + "\r\n";
  const close_delim = "\r\n--" + boundary + "--";

  var reader = new FileReader();
  reader.readAsBinaryString(fileData);
  reader.onload = function(e) {
    var contentType = fileData.type || 'application/octet-stream';
    // Updating the metadata is optional and you can instead use the value from drive.files.get.
    var base64Data = btoa(reader.result);
    var multipartRequestBody =
        delimiter +
        'Content-Type: application/json\r\n\r\n' +
        JSON.stringify(fileMetadata) +
        delimiter +
        'Content-Type: ' + contentType + '\r\n' +
        'Content-Transfer-Encoding: base64\r\n' +
        '\r\n' +
        base64Data +
        close_delim;

    var request = gapi.client.request({
        'path': '/upload/drive/v2/files/' + fileId,
        'method': 'PUT',
        'params': {'uploadType': 'multipart', 'alt': 'json'},
        'headers': {
          'Content-Type': 'multipart/mixed; boundary="' + boundary + '"'
        },
        'body': multipartRequestBody});
    if (!callback) {
      callback = function(file) {
        console.log(file)
      };
    }
    request.execute(callback);
  }
}

有关v3中的示例javascript代码,请查看此link