- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经编写了 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/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!