Questions tagged [google-tasks-api]

The Google Tasks API provides developers with a powerful set of API endpoints for searching, reading, and updating Google Tasks content and metadata.

The home page for the API can be found here.

The API reference is here.

187 questions
1
vote
1 answer

How to enable logging for Google Task Queue?

I currently have a task queue with tasks running. This is what my dashboard looks like: When I click on 'View' (under logs on the far right), it takes me to a page that looks like this: I am certain that there should be some logs, considering all…
1
vote
1 answer

How to user setInterval in firebase functions?

I´m trying to use a setInterval inside a firebase function to run for 40 minutes then stop. Since the max timeout for onCall function is 9 minutes what workaround could be used? I saw a suggestion to use GCP tasks but didn´t was able to find how I…
Adriel Werlich
  • 1,982
  • 5
  • 15
  • 30
1
vote
1 answer

`gradle jar` doesn't seem to be adding dependencies to jar file

I'm wanting to make an executable file that will automatically create a Google Task list with associated tasks. Right now, however, I'm trying to simply create an executable using the default code that Google provides here. Once you add the…
1
vote
1 answer

Google Task API No More Shows Tasks created via API on Calendar

When creating tasks via API those tasks do not appear in calendar, but are only visible in sidebar section of tabs. Just few days ago all seems to be working correctly, so this could be some bug or their sudenn change. How to find that? How to…
Alexa
  • 418
  • 4
  • 12
1
vote
1 answer

How to change the parameters for a task with known task and tasklist ids

I would like use Apps Script to make changes to the status, dates, or note of a task with known id. I have tried using the following code which shows a change in status when I log the task in the script but the task is not updated in the…
Sheils
  • 323
  • 2
  • 22
1
vote
1 answer

Where do I find the tasklist ID

I am trying to create tasks in a tasklist from the google app script editor. Looks like I need the id of the tasklist to be able to add the task. Problem is I can figure out where ti find the tasklist ID
Sheils
  • 323
  • 2
  • 22
1
vote
1 answer

Tasks now have a due TIME as well as DATE but API still says 00:00:00

I noticed today that an updated iOS version of the Google Tasks app includes the option to set the time in addition to the due date. A welcome improvement, and the due datetime from the iOS app properly appears on the Gsuite website. But, I don't…
Robert
  • 95
  • 8
1
vote
1 answer

Setting ShowCompleted for google tasks

How would I set the ShowCompleted flag in google tasks for DotNet? I've searched the samples with no luck. tasks.get Task task = service.Tasks.Get("@default", "taskID").Fetch(); Console.WriteLine(task.Title); Thanks.
1
vote
2 answers

Nodejs- Set body to Google cloud task queue

I have a nodejs server in Google app engine where I want to delegate long running tasks to task queues using the Google Cloud Task queue. Task queue not delivering request body but hitting the endpoint: This is how I add task to task queue: //…
1
vote
1 answer

Where are Google cloud task queues endpoints located and can someone use nodejs child process instead?

I have a nodejs on Google app engine server but I need to do some background tasks immediately after sending response to user. I have been using the sample code below with nodejs child-process as described here but it only works well when tested…
1
vote
1 answer

Google API Authentication Tasks API

I want to create a Lambda function that uses the Google Tasks API to add tasks every evening at a certain time. I am unsure of how to authenticate with my account and be able to store access tokens / credentials securely in my lambda environment…
9er
  • 1,604
  • 3
  • 20
  • 37
1
vote
1 answer

google tasks api Insufficient Permission

I'm following the steps to access the Google Tasks API found here, installed the libraries, copied the code for Python, executed the quickstart in my computer and it worked. After that I changed the code to write a task, Here is the code: from…
user24312
  • 73
  • 8
1
vote
1 answer

Google Tasks API Error when Creating New Task - Fatal error: Class 'Task' not found

I am using the Google API Client Libraries PHP (Beta) and I have been successful at getting authorization for both the Calendar and Task api. I have also created calendars, inserted events and updated events. The next step was to create Tasks lists.…
1
vote
0 answers

Transferring advanced service permission onto copy of a Google Apps Script project

I have a Google Sheet that I am using as a template. This sheet contains a script that uses an advanced service. However when I take a copy of the sheet the contained script no longer has permissions to access the advanced service in the dev console…
Andrew Roberts
  • 2,720
  • 1
  • 14
  • 26
1
vote
2 answers

insert task in task list google-task-api

I am really confused. I am testing google task api, I can access my tasks but when I am tiring to insert a task it gives an error. in documentation this code is available, that dose not work because there is no Fetch function available. Task task =…
ahmadabdullah247
  • 341
  • 1
  • 4
  • 16