【问题标题】:How to upload files to Google drive using gapi and resumable uploads?如何使用 gapi 和可恢复上传将文件上传到 Google 驱动器?
【发布时间】:2018-02-19 23:30:14
【问题描述】:

我正在尝试按照 this 指南通过 Google Api 在 Google Drive 上进行可恢复上传。

这是我的代码,您可以看到它按照指南的要求发出 2 个请求,第一部分创建元数据,然后我们使用位置开始上传文件,其中包含第一个请求创建的会话。

        const file = new File(['Hello, world!'], 'hello world.txt', { type: 'text/plain;charset=utf-8' });
        const contentType = file.type || 'application/octet-stream';

        const reqMetadata = gapi.client.request({
            'path': 'upload/drive/v3/files',
            'method': 'POST',
            'params': { 'uploadType': 'resumable' },
            'headers': {
                'X-Upload-Content-Type': file.type,
                'X-Upload-Content-Length': file.size,
                'Content-Type': 'application/json; charset=UTF-8'
            },
            'body': {
                'name': file.name,
                'mimeType': contentType,
                'Content-Type': contentType,
                'Content-Length': file.size
            }
        });

        reqMetadata.execute((respMetadata, rawRespMetadata: any) => {
            const locationUrl = JSON.parse(rawRespMetadata).gapiRequest.data.headers.location;

            const reader = new FileReader();

            reader.onload = (e) => {
                const reqFile = gapi.client.request({
                    'path': locationUrl,
                    'method': 'PUT',
                    'headers': {
                        'Content-Type': file.type,
                        'Content-Length': file.size
                    },
                    'body': reader.result
                });

                reqFile.execute(respFile => {
                    console.log(respFile);
                });
            };

            reader.readAsArrayBuffer(file);
        });

有什么问题?

好吧,Google Api 库似乎不喜欢将文件/字节数组作为其 gapi.client.request 的主体,并且他们正在将其截断

传递文件的正确方法是什么?我尝试了 body: file 和 body: reader.result 但结果相同

PS:gapi 已经完全通过 auth2 进行身份验证和初始化,我可以创建文件/目录。

编辑1:

gapi 库只是对 FileArray 进行 jsoing,因此 JSON 函数将其修改为空对象,无法使其工作.. 一定是缺少某些东西。

编辑 2:

我让它在没有 GAPI 的情况下工作,它可以正确上传文件,但我在使用 CORS 时遇到了一些问题

            reader.onload = (e) => {                    

                const authHeader = `Bearer ${this.auth.currentUser.get().getAuthResponse().access_token}`;
                const headers = new Headers({
                    'Authorization': authHeader,
                    'Content-Type': file.type
                });
                const options = new RequestOptions({ headers });
                const url = locationUrl;

                this.http.put(url, reader.result, options).subscribe(res => {
                    observer.next(res);
                }, (err) => {
                    observer.next({});
                });
            };

            reader.readAsArrayBuffer(file);

如果有人有一些提示..

【问题讨论】:

  • 您使用的是什么 GAPI 版本?此外,GAPI 似乎正在使用 sreams 在 NodeJS 中上传 ifles。你可以试试this
  • 应该是最新的版本,你在哪里找到关于流(sockets)使用的文档?
  • Here,查看 NodeJS 示例。
  • 我在浏览器上,不能使用 NodeJS 流。
  • 您是否尝试发送有关问题的反馈developers.google.com/drive/v3/web/…

标签: javascript google-api google-api-js-client


【解决方案1】:

您必须使用 XMLHttpRequest 来发出跨源 HTTP 请求。 gapi 客户端不支持 XMLHttpRequest。 (but there is this pull request that's been open for a while) 即使您没有在初始请求中发送文件二进制数据,您也必须对初始请求和上传文件的请求使用 XMLHttpRequest,以便返回的位置 url 提供适当的响应标头(Access- Control-Allow-Origin: YOUR_URL) 并满足 CORS 要求。

这是一个很棒的tutorial about CORS and XMLHttpRequest,可能对转换您的请求很有用。

您可以使用您链接到的页面中描述的请求信息。 This example shows the request info 但未提供有关获取身份验证令牌的任何信息。 But this example does!

我能够使用以下代码成功上传文件:

const file = new File(['Hello, world!'], 'hello world.txt', { type: 'text/plain;charset=utf-8' });
const contentType = file.type || 'application/octet-stream';
const user = gapi.auth2.getAuthInstance().currentUser.get();
const oauthToken = user.getAuthResponse().access_token;
const initResumable = new XMLHttpRequest();
initResumable.open('POST', 'https://www.googleapis.com/upload/drive/v3/files?uploadType=resumable', true);
initResumable.setRequestHeader('Authorization', 'Bearer ' + oauthToken);
initResumable.setRequestHeader('Content-Type', 'application/json');
initResumable.setRequestHeader('X-Upload-Content-Length', file.size);
initResumable.setRequestHeader('X-Upload-Content-Type', contentType);
initResumable.onreadystatechange = function() {
  if(initResumable.readyState === XMLHttpRequest.DONE && initResumable.status === 200) {
    const locationUrl = initResumable.getResponseHeader('Location');
    const reader = new FileReader();
    reader.onload = (e) => {
      const uploadResumable = new XMLHttpRequest();
      uploadResumable.open('PUT', locationUrl, true);
      uploadResumable.setRequestHeader('Content-Type', contentType);
      uploadResumable.setRequestHeader('X-Upload-Content-Type', contentType);
      uploadResumable.onreadystatechange = function() {
        if(uploadResumable.readyState === XMLHttpRequest.DONE && uploadResumable.status === 200) {
          console.log(uploadResumable.response);
         }
      };
      uploadResumable.send(reader.result);
    };
    reader.readAsArrayBuffer(file);
  }
};

// You need to stringify the request body containing any file metadata

initResumable.send(JSON.stringify({
  'name': file.name,
  'mimeType': contentType,
  'Content-Type': contentType,
  'Content-Length': file.size
}));

但是这里有一个更强大的存储库来处理所有这些:https://github.com/googledrive/cors-upload-sample

【讨论】:

  • 谢谢你,你应该得到赏金。我做了和你一样的事,但是最后的角度 $http 服务给了我一些 CORS 错误。可能我搞砸了一些 http-header 并且驱动器拒绝我上传文件。
  • 在下面使用 Angular http 服务而不是普通 xhr 添加了一个附加答案
【解决方案2】:

这是翻译成 Angular http 服务的 BMcV 解决方案。

const contentType = file.type || 'application/octet-stream';
const baseRoot = gapi['config'].get('googleapis.config').root;

const reader = new FileReader();

reader.onload = (e) => {

    const authHeader = `Bearer ${this.auth.currentUser.get().getAuthResponse().access_token}`;

    const metadataHeaders = {
        'Authorization': authHeader,
        'Content-Type': 'application/json',
        'X-Upload-Content-Length': file.size,
        'X-Upload-Content-Type': contentType
    };
    const metadataOptions = new RequestOptions({ headers: new Headers(metadataHeaders) });

    const url = `${baseRoot}/upload/drive/v3/files?uploadType=resumable`;

    const metadata = {
        'name': file.name,
        'mimeType': contentType,
        'Content-Type': contentType,
        'Content-Length': file.size
    };

    this.http.post(url, metadata, metadataOptions).subscribe(metadataRes => {

        const locationUrl = metadataRes.headers.get('Location');

        const uploadHeaders = {
            'Content-Type': contentType,
            'X-Upload-Content-Type': contentType
        };
        const uploadOptions = new RequestOptions({ headers: new Headers(uploadHeaders) });

        this.http.put(locationUrl, reader.result, uploadOptions).subscribe(uploadRes => {
            console.log(uploadRes.json());
        });
    }, (err) => {
        console.error(err);
    });
};
reader.readAsArrayBuffer(file);

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-02-17
    • 2018-08-09
    • 1970-01-01
    • 2019-05-18
    相关资源
    最近更新 更多