Google Drive API下载NODE.JS示例无效

时间:2017-11-10 17:06:17

标签: node.js google-drive-api

以下是基于Google: "Here are examples of performing a file download with our Drive API client libraries." NODE.JS

的代码
moment(dateStr).toDate()

没有错误的运行:

const fs = require('fs')
const google = require('googleapis')
const googleAuth = require('google-auth-library')

const SCOPES = ['https://www.googleapis.com/auth/drive'] // Full, permissive scope to access all of a user's files, excluding the Application Data folder. Request this scope only when it is strictly necessary.
const TOKEN_DIR = './credentials/'
const TOKEN_PATH = TOKEN_DIR + 'token4joeDlEs6.json'
const CLIENT_SECRET_FILEPATH = 'client_secret.json'

var clientSecretStr = fs.readFileSync(CLIENT_SECRET_FILEPATH).toString('utf-8')
var tokenStr = fs.readFileSync(TOKEN_PATH).toString('utf-8')


var credentials = JSON.parse(clientSecretStr) 

var clientSecret = credentials.installed.client_secret
var clientId = credentials.installed.client_id
var redirectUrl = credentials.installed.redirect_uris[0]
var auth = new googleAuth()
var oauth2Client = new auth.OAuth2(clientId, clientSecret, redirectUrl)

oauth2Client.credentials = JSON.parse(tokenStr)

var drive = google.drive('v3');

// ["Examples"-NODE.JS tab](https://developers.google.com/drive/v3/web/manage-downloads)
var fileId = 'OBFUSCATED' // Safeway (OBFUSCATED)
var dest = fs.createWriteStream('out/safeway.txt')
drive.files.get({
  auth: oauth2Client,
  fileId: fileId,
  //alt: 'media'
})
    .on('end', function () {
      console.log('Done');
    })
    .on('error', function (err) {
      console.log('Error during download', err);
    })
    .pipe(dest);

预期结果

out / safeway.txt包含我的购物清单。 :)

实际结果

out / safeway.txt包含

$ node joeDlSample.js
Done
$

第二次运行接近示例

我还上传了一张.jpg图片,&取消注释代码中的{ "access_token" : "OBFUSCATED.OBFUSCATED", "expires_in" : 3600, "token_type" : "Bearer" }

预期结果

out / elb.jpg包含elb图片

实际结果

out / elb.jpg包含

alt: media

1 个答案:

答案 0 :(得分:3)

我设法通过组合NodeJS的Drive NodeJS QuickstartDownload Files示例,在Drive API中下载文件。

从NodeJS快速入门开始,这一行:

authorize(JSON.parse(content), listFiles);

我创建了自己的downloadFile函数来下载文件而不是列出文件并将上面提到的行修改为

  authorize(JSON.parse(content), downloadFile);

这里是NodeJS示例中的downloadFile函数部分:

function downloadFile(auth){
  var service = google.drive('v3');
  var fileId = 'FILE_ID_OF_SHOPPINGLIST_TEXT_FILE';
  var dest = fs.createWriteStream('/usr/local/google/home/username/Downloads/shoppinglist.txt');

  service.files.get({
      auth: auth,
      fileId: fileId,
      alt: 'media'
  })
      .on('end', function () {
        console.log('Done');
      })
      .on('error', function (err) {
        console.log('Error during download', err);
      })
      .pipe(dest);
}

我的下载文件夹中的下载文件:

enter image description here

适合我:)