Node.js 如何从nodejs Google tasks API中的任务列表中获取具有到期日期的任务?

Node.js 如何从nodejs Google tasks API中的任务列表中获取具有到期日期的任务?,node.js,google-api-nodejs-client,google-tasks-api,google-tasks,Node.js,Google Api Nodejs Client,Google Tasks Api,Google Tasks,在页面中有一个nodejs示例,可以从googletasks获取所有任务列表。我让它工作,我一直在玩,以获得每个任务列表有一个截止日期的任务,但我甚至无法获得与任务列表关联的所有任务。可能吗?这应该是可能的,但是怎么可能呢 我必须说我是nodejs的初学者。。。例如: const fs = require('fs'); const readline = require('readline'); const {google} = require('googleapis'); // If modi

在页面中有一个nodejs示例,可以从googletasks获取所有任务列表。我让它工作,我一直在玩,以获得每个任务列表有一个截止日期的任务,但我甚至无法获得与任务列表关联的所有任务。可能吗?这应该是可能的,但是怎么可能呢

我必须说我是nodejs的初学者。。。例如:

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

// If modifying these scopes, delete credentials.json.
const SCOPES = ['https://www.googleapis.com/auth/tasks.readonly'];
const TOKEN_PATH = 'credentials.json';

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

/**
 * Create an OAuth2 client with the given credentials, and then execute the
 * given callback function.
 * @param {Object} credentials The authorization client credentials.
 * @param {function} callback The callback to call with the authorized client.
 */
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 getNewToken(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 getNewToken(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 callback(err);
      oAuth2Client.setCredentials(token);
      // Store the token to disk for later program executions
      fs.writeFile(TOKEN_PATH, JSON.stringify(token), (err) => {
        if (err) console.error(err);
        console.log('Token stored to', TOKEN_PATH);
      });
      callback(oAuth2Client);
    });
  });
}

/**
 * Lists the user's first 10 task lists.
 *
 * @param {google.auth.OAuth2} auth An authorized OAuth2 client.
 */
function listTaskLists(auth) {
  const service = google.tasks({version: 'v1', auth});
  service.tasklists.list({
    maxResults: 10,
  }, (err, res) => {
    if (err) return console.error('The API returned an error: ' + err);
    const taskLists = res.data.items;
    if (taskLists) {
      console.log('Task lists:');
      taskLists.forEach((taskList) => {
        console.log(`${taskList.title} (${taskList.id})`);
      });
    } else {
      console.log('No task lists found.');
    }
  });
}

在本例中,要从Google tasks获取所有任务列表,您需要使用函数
service.tasklists.list

然后,您需要从返回的每个任务列表中获取id,并调用函数
service.tasks.list
,使用任务列表中的id作为参数。比如:

function getTasksFromTaskList(tasklistid, auth) {
  const service = google.tasks({version: 'v1', auth});
  service.tasks.list({
    tasklist: tasklistid,
  }, (err, res) => {
    if (err) return console.error('The API returned an error: ' + err);
    const tasks = res.data.items;
    if (tasks) {
      console.log(`Tasks from ${tasklistid}:`);
      tasks.forEach((task) => {
        console.log(`${task.title} (${task.id})`);
      });
    } else {
      console.log('No tasks found.');
    }
  });
}
您将在API参考中找到更多信息:


正如您在该链接上看到的,您可以在请求中包含更多可选参数(例如,截止日期)。

使用service.task.get()我找不到node.js的任何文档,但我知道这就是方法。谢谢!!!,我现在工作有点忙,但我一有时间就会把它解决掉