gpt4 book ai didi

javascript - 如何从 NodeJS API 上传图片到谷歌驱动器

转载 作者:行者123 更新时间:2023-11-29 20:51:03 24 4
gpt4 key购买 nike

我已经编写了 API 并且可以上传到 Heroku 服务器。当我在更改后将数据推送到 Heroku 中时,所有图像都消失了。我不知道为什么没有显示它们。我发现了一些其他选项,例如直接在 Google Drive 中上传图片,并且我已经阅读了相关文档。我找不到与此相关的任何资源。

谁能帮我提供有关将文件上传到 Google 云端硬盘的引用资料或建议?

最佳答案

@KarlR 的回答很有帮助,但代码有其自身的错误。 (范围不支持文件上传)。让我逐步解释这一点,以便您可以轻松地将文件上传到 Google 云端硬盘。

第 1 步:转到 Google Drive API V3 NodeJS 快速入门

按照初始步骤操作,看看它是否有效。然后进行下一步。

第 2 步:有一个名为 uploadFile 的函数并更改范围以适合上传。代码段如下。

在下面的示例中,文件从 files/photo.jpg 中获取并重命名为 photo.jpg 并上传到 root Google 云端硬盘的文件夹。

const fs = require('fs');
const readline = require('readline');
const { google } = require('googleapis');

// If modifying these scopes, delete token.json.
const SCOPES = ['https://www.googleapis.com/auth/drive.file'];
const TOKEN_PATH = 'token.json';

/**
* Create an OAuth2 client with the given credentials, and then execute the given callback function.
*/
function authorize(credentials, callback) {
const {client_secret, client_id, redirect_uris} = credentials.installed;
const oAuth2Client = new google.auth.OAuth2(
client_id, client_secret, redirect_uris[0]);

// Check if we have previously stored a token.
fs.readFile(TOKEN_PATH, (err, token) => {
if (err) return getAccessToken(oAuth2Client, callback);
oAuth2Client.setCredentials(JSON.parse(token));
callback(oAuth2Client);
});
}

/**
* Get and store new token after prompting for user authorization, and then
* execute the given callback with the authorized OAuth2 client.
* @param {google.auth.OAuth2} oAuth2Client The OAuth2 client to get token for.
* @param {getEventsCallback} callback The callback for the authorized client.
*/
function getAccessToken(oAuth2Client, callback) {
const authUrl = oAuth2Client.generateAuthUrl({
access_type: 'offline',
scope: SCOPES,
});
console.log('Authorize this app by visiting this url:', authUrl);
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
rl.question('Enter the code from that page here: ', (code) => {
rl.close();
oAuth2Client.getToken(code, (err, token) => {
if (err) return console.error('Error retrieving access token', err);
oAuth2Client.setCredentials(token);
// Store the token to disk for later program executions
fs.writeFile(TOKEN_PATH, JSON.stringify(token), (err) => {
if (err) return console.error(err);
console.log('Token stored to', TOKEN_PATH);
});
callback(oAuth2Client);
});
});
}
/**
* Describe with given media and metaData and upload it using google.drive.create method()
*/
function uploadFile(auth) {
const drive = google.drive({version: 'v3', auth});
const fileMetadata = {
'name': 'photo.jpg'
};
const media = {
mimeType: 'image/jpeg',
body: fs.createReadStream('files/photo.jpg')
};
drive.files.create({
resource: fileMetadata,
media: media,
fields: 'id'
}, (err, file) => {
if (err) {
// Handle error
console.error(err);
} else {
console.log('File Id: ', file.id);
}
});
}

fs.readFile('credentials.json', (err, content) => {
if (err) return console.log('Error loading client secret file:', err);
// Authorize a client with credentials, then call the Google Drive API.
authorize(JSON.parse(content), uploadFile);
});

第 3 步:更改正在上传的文件的名称

uploadFile 函数中,更改 name 属性。

const fileMetadata = {
'name': 'any_name_you_like'
};

第 4 步:上传不同的文件类型

您只需更改uploadFile 函数中的以下代码段。参见 mostly used mime types为您首选的文件扩展名。

const media = {
mimeType: 'any_mime_type',
body: fs.createReadStream('files/photo.jpg')
};

第 5 步:将文件上传到 Google Drive 上的特定文件夹

打开浏览器并登录到您的 Google 云端硬盘。转到特定文件夹并查看浏览器 URL。它将如下所示。

https://drive.google.com/drive/u/0/folders/1xxxXj_sdsdsdsd0Rw6qDf0jLukG6eEUl

1xxxXj_sdsdsdsd0Rw6qDf0jLukG6eEUl是文件夹ID(parentID)。更改 uploadFile 函数中的以下代码段。

const fileMetadata = {
'name': 'any_file_name',
parents: ['1xxxXj_sdsdsdsd0Rw6qDf0jLukG6eEUl']
};

希望这足以满足您的要求。

关于javascript - 如何从 NodeJS API 上传图片到谷歌驱动器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51870427/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com