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
答案 0 :(得分:3)
我设法通过组合NodeJS的Drive NodeJS Quickstart和Download 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);
}
我的下载文件夹中的下载文件:
适合我:)