// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/drive.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const drive = google.drive('v2');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/drive.file',
],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await drive.comments.delete({
// The ID of the comment.
commentId: 'placeholder-value',
// The ID of the file.
fileId: 'placeholder-value',
});
console.log(res.data);
}
main().catch(e => {
console.error(e);
throw e;
});
// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/drive.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const drive = google.drive('v2');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/drive.file',
],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await drive.comments.patch({
// The ID of the comment.
commentId: 'placeholder-value',
// The ID of the file.
fileId: 'placeholder-value',
// Request body metadata
requestBody: {
// request body parameters
// {
// "anchor": "my_anchor",
// "author": {},
// "commentId": "my_commentId",
// "content": "my_content",
// "context": {},
// "createdDate": "my_createdDate",
// "deleted": false,
// "fileId": "my_fileId",
// "fileTitle": "my_fileTitle",
// "htmlContent": "my_htmlContent",
// "kind": "my_kind",
// "modifiedDate": "my_modifiedDate",
// "replies": [],
// "selfLink": "my_selfLink",
// "status": "my_status"
// }
},
});
console.log(res.data);
// Example response
// {
// "anchor": "my_anchor",
// "author": {},
// "commentId": "my_commentId",
// "content": "my_content",
// "context": {},
// "createdDate": "my_createdDate",
// "deleted": false,
// "fileId": "my_fileId",
// "fileTitle": "my_fileTitle",
// "htmlContent": "my_htmlContent",
// "kind": "my_kind",
// "modifiedDate": "my_modifiedDate",
// "replies": [],
// "selfLink": "my_selfLink",
// "status": "my_status"
// }
}
main().catch(e => {
console.error(e);
throw e;
});
// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/drive.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const drive = google.drive('v3');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/drive.file',
],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await drive.comments.update({
// The ID of the comment.
commentId: 'placeholder-value',
// The ID of the file.
fileId: 'placeholder-value',
// Request body metadata
requestBody: {
// request body parameters
// {
// "anchor": "my_anchor",
// "author": {},
// "content": "my_content",
// "createdTime": "my_createdTime",
// "deleted": false,
// "htmlContent": "my_htmlContent",
// "id": "my_id",
// "kind": "my_kind",
// "modifiedTime": "my_modifiedTime",
// "quotedFileContent": {},
// "replies": [],
// "resolved": false
// }
},
});
console.log(res.data);
// Example response
// {
// "anchor": "my_anchor",
// "author": {},
// "content": "my_content",
// "createdTime": "my_createdTime",
// "deleted": false,
// "htmlContent": "my_htmlContent",
// "id": "my_id",
// "kind": "my_kind",
// "modifiedTime": "my_modifiedTime",
// "quotedFileContent": {},
// "replies": [],
// "resolved": false
// }
}
main().catch(e => {
console.error(e);
throw e;
});
// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/drive.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const drive = google.drive('v2');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/drive.file',
],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await drive.replies.delete({
// The ID of the comment.
commentId: 'placeholder-value',
// The ID of the file.
fileId: 'placeholder-value',
// The ID of the reply.
replyId: 'placeholder-value',
});
console.log(res.data);
}
main().catch(e => {
console.error(e);
throw e;
});
// Before running the sample:
// - Enable the API at:
// https://console.developers.google.com/apis/api/drive.googleapis.com
// - Login into gcloud by running:
// `$ gcloud auth application-default login`
// - Install the npm module by running:
// `$ npm install googleapis`
const {google} = require('googleapis');
const drive = google.drive('v3');
async function main() {
const auth = new google.auth.GoogleAuth({
// Scopes can be specified either as an array or as a single, space-delimited string.
scopes: [
'https://www.googleapis.com/auth/drive',
'https://www.googleapis.com/auth/drive.file',
],
});
// Acquire an auth client, and bind it to all future calls
const authClient = await auth.getClient();
google.options({auth: authClient});
// Do the magic
const res = await drive.replies.delete({
// The ID of the comment.
commentId: 'placeholder-value',
// The ID of the file.
fileId: 'placeholder-value',
// The ID of the reply.
replyId: 'placeholder-value',
});
console.log(res.data);
}
main().catch(e => {
console.error(e);
throw e;
});