- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将文件上传到 Google 云端硬盘。运行该程序后,我得到状态 200,但在云端硬盘中找不到该文件。我在 parents
键下的 fileMetadata
变量中输入了文件夹 ID。
这是我的代码:
const { google } = require('googleapis');
const credentials = require('./credentials.json');
const fs = require('fs')
const scopes = [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/drive.file',
'https://www.googleapis.com/auth/drive.appdata',
];
const auth = new google.auth.JWT(
credentials.client_email, null,
credentials.private_key, scopes
);
const drive = google.drive({ version: "v3", auth });
auth.authorize(function(err, tokens) {
if (err) {
console.log(err);
return;
} else {
console.log('It authorized successfully!');
console.log(`The Token is: ${JSON.stringify(tokens)}`)
var data = fs.createReadStream('./Test.txt')
var fileMetadata = {
'name': 'photo.txt',
'parents':[{'id':'1MiFB-XXWFRHjxZwTmE9FxsCGb9Een_2Y'}] //Folder ID
};
var media = {
mimeType: 'text/plain',
body: data //
};
drive.files.create({
resource: fileMetadata,
media: media,
fields: 'id'
}).then (function(err, file) {
if(err) {
// Handle error
console.log(err);
} else {
console.log('File Id: ', file.id);
}
});
}
});
这就是我得到的回复:
{
config: {
url: 'https://www.googleapis.com/upload/drive/v3/files?fields=id&uploadType=multipart',
method: 'POST',
paramsSerializer: [Function (anonymous)],
data: PassThrough {
_readableState: [ReadableState],
_events: [Object: null prototype],
_eventsCount: 2,
_maxListeners: undefined,
_writableState: [WritableState],
allowHalfOpen: true,
_flush: [Function: flush],
[Symbol(kCapture)]: false,
[Symbol(kTransformState)]: [Object]
},
headers: {
'Content-Type': 'multipart/related; boundary=7b25465c-4ee3-450d-b41c-7efd51e4637d',
'Accept-Encoding': 'gzip',
'User-Agent': 'google-api-nodejs-client/0.7.2 (gzip)',
Authorization: 'Bearer `TOKEN`,
Accept: 'application/json'
},
params: [Object: null prototype] { fields: 'id', uploadType: 'multipart' },
validateStatus: [Function (anonymous)],
body: PassThrough {
_readableState: [ReadableState],
_events: [Object: null prototype],
_eventsCount: 2,
_maxListeners: undefined,
_writableState: [WritableState],
allowHalfOpen: true,
_flush: [Function: flush],
[Symbol(kCapture)]: false,
[Symbol(kTransformState)]: [Object]
},
responseType: 'json'
},
data: { id: '1up-LCc9Fc0D2_t7OdJvF9D2QEVwxhV8y' },
headers: {
'alt-svc': 'h3-29=":443"; ma=2592000,h3-27=":443"; ma=2592000,h3-T050=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43"',
'cache-control': 'no-cache, no-store, max-age=0, must-revalidate',
connection: 'close',
'content-length': '47',
'content-type': 'application/json; charset=UTF-8',
date: 'Mon, 27 Jul 2020 09:54:42 GMT',
expires: 'Mon, 01 Jan 1990 00:00:00 GMT',
pragma: 'no-cache',
server: 'UploadServer',
vary: 'Origin, X-Origin',
'x-guploader-uploadid': 'AAANsUma96bf0mAHkz32b8QuarZvQBuez_rVwOmhVV-ESgd1IccLyYYnn3xdT--jVFDdo9zC9Qz_VqAVyaHK-OcQWFA'
},
status: 200,
statusText: 'OK'
}
文件在哪里?这里有什么不对吗?
谢谢!!
最佳答案
我相信您的目标和情况如下。
来自 After I run the program, I get status 200 but I can't find the file in Drive.
以及脚本中的服务帐户,我认为问题的原因是上传的文件被放入服务帐户的Google Drive中。
该服务帐户与您的 Google 帐户不同。因此,当服务帐户上传文件时,该文件将被放入服务帐户的 Google Drive 中。这样,您就无法使用浏览器查看 Google 云端硬盘上的文件。
因此,为了在您的 Google 云端硬盘上查看服务帐户上传的文件,我建议采用以下 2 种模式。
在此模式中,文件将上传到 Google 云端硬盘中的文件夹。由此,请执行以下流程。
'parents':['### folderId ###']
如Iamblichus`s comment .通过此流程,您可以在 Google 云端硬盘的共享文件夹中看到上传的文件。
但是,在您的脚本中,需要进行一些修改。
var fileMetadata = {
'name': 'photo.txt',
'parents':[{'id':'1MiFB-XXWFRHjxZwTmE9FxsCGb9Een_2Y'}] //Folder ID
};
var media = {
mimeType: 'text/plain',
body: data //
};
drive.files.create({
resource: fileMetadata,
media: media,
fields: 'id'
}).then (function(err, file) {
if(err) {
// Handle error
console.log(err);
} else {
console.log('File Id: ', file.id);
}
});
到:
var fileMetadata = {
'name': 'photo.txt',
'parents':['### folderId of the folder shared with the service account ###'}] //Folder ID
};
var media = {
mimeType: 'text/plain',
body: data //
};
drive.files
.create({
resource: fileMetadata,
media: media,
fields: "id",
})
.then(function (file) {
const fileId = file.data.id;
console.log("File Id: ", fileId);
})
.catch(function (err) {
console.log(err);
});
在此模式中,文件将上传到服务帐户的 Google 云端硬盘,并为您的 Google 帐户创建该文件的权限。这样,您就可以在“与我共享”中看到上传的文件。
var fileMetadata = {
'name': 'photo.txt',
'parents':[{'id':'1MiFB-XXWFRHjxZwTmE9FxsCGb9Een_2Y'}] //Folder ID
};
var media = {
mimeType: 'text/plain',
body: data //
};
drive.files.create({
resource: fileMetadata,
media: media,
fields: 'id'
}).then (function(err, file) {
if(err) {
// Handle error
console.log(err);
} else {
console.log('File Id: ', file.id);
}
});
到:
var fileMetadata = {
'name': 'photo.txt',
};
var media = {
mimeType: 'text/plain',
body: data //
};
drive.files
.create({
resource: fileMetadata,
media: media,
fields: "id",
})
.then(function (file) {
const fileId = file.data.id;
console.log("File Id: ", fileId);
drive.permissions.create(
{
resource: {
type: "user",
role: "writer",
emailAddress: "###", // <--- Please set the email of your Google account.
},
fileId: fileId,
fields: "id",
},
function (err, res) {
if (err) {
console.log(err);
return;
}
console.log(res.data);
}
);
})
.catch(function (err) {
console.log(err);
});
You can't yet change the owner of this item. (We're working on it.)
的错误信息出现时可见,这将在以后的更新中实现。<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="61060e0e060d04001108122154574f514f51" rel="noreferrer noopener nofollow">[email protected]</a>
.关于javascript - 将文件上传到状态 200 的 Google Drive API,但该文件在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63113116/
我正在尝试使用 Drive SDK 将文件上传到 Google Drive . 我想知道是否有 API 方法来检查用户的驱动器是否有足够的容量来保存文件。如果是,请指出我应该搜索的位置,如果不是,最好
我想在我正在开发的新 android 应用程序(又名 drive.appdata 范围)中使用特殊应用程序数据文件夹中的文件。 谷歌的你们在与 Google Play Services 4.2 捆绑的
列出Google云端硬盘文件的JavaScript示例使用gapi.client.drive.files.list()。 尝试使用此方法时,出现错误“无法读取未定义的属性'files'”。 该问题和解
我正在尝试使用 Google Cloud REST API 获取特定文件夹大小。 我已经尝试过使用 REST API 的“ about ”方法,但在这种方法中,我获得了整个云存储的已用字节总数和可用空
我只是想了解在 G Suite 上使用 Team Drive 获取团队存储库与仅使用 Google Drive 上的共享文件夹相比的优势。通过搜索不同的来源并进行测试,到目前为止我发现了以下结果。 坦
我正在尝试使用 Google Drive API (v3) 更新文档 在 Google 云端硬盘中。 我已阅读此迁移指南: Google Drive API v3 Migration 并对其进行编码以
我曾尝试将我的 Web 应用程序集成到 Google 云端硬盘用户界面(以打开文件),但没有取得多大成功。我无法使用 OAuth 范围 https://www.googleapis.com/auth/
使用Google Drive API时 我使用 com.google.api.services.drive.Drive.files() 来迭代一些文件。 我注意到所有目录对象都没有权限? 当我使用 F
Google Drive API 和 Google Spreadsheet API (v 3.0) 都支持获取与以下 URL 对应的 [KEY] 的方法: https://docs.google.co
我正在尝试将本地 CSV 文件上传到 Google Drive 并在那里像 Google 电子表格一样显示它。但是,当我转到 Google Drive 并单击指向我的文件的链接时,我只能下载它,而不能
我正在尝试使用 ArrayBuffer 的内容在 Google Drive 上创建一个文件。我正在使用 Javascript 和 Drive API 的第 3 版。 我设法使用 this code s
我可以使用 google drive android api 将文本文件上传到 google drive 中的文件夹。 Sample code 但是我想上传一张图片到谷歌驱动器。这可能吗? 创建文本文
我想知道以下是否可行,因为我似乎无法在网上找到任何具体的方法: 当 Google Takeaway 服务将新的 takeout-xxx.zip 文件上传到我的 Google Drive Takeawa
是否可以对 Google Drive 上的文件执行“追加”操作? 假设我想使用 Google Drive 保存日志条目“as-they-come-in”,是否有某种“仅附加”操作可用? 最佳答案 如果
看着 Google Drive scopes .我明白: https://www.googleapis.com/auth/drive.install - 用于让用户批准安装应用程序的特殊范围 如果我希
我有一个带有两个父文件夹( FILE-1 和 FOLDER-1 )的文档( FOLDER-2 )。 如果我删除 FOLDER-1 , FILE-1也被删除。然而,我预计只有FOLDER-1将被删除,并
我正在测试Google Drive API。测试脚本执行HTTP GET来访问Files-> List API,但是我总是以某种方式在项目中得到一个空列表。我的Google驱动器中有数百个文件,因此结
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
我将我的应用程序的文件托管在 Google Drive 上,它会在首次启动后立即下载它们。一切都很好,但在我发布新的应用程序版本后,下载数量不断增加,文件由于某些原因变得不可用。虽然我没有改变任何东西
我是一名优秀的程序员,十分优秀!