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
3
votes
1 answer

Setting up client Google Tasks App

My Question: How do I properly setup the Google Tasks client library api so I can build my app? (i.e. this may be just a dependency problem due to poor documentation). The problem: Google Tasks has unfortunate lower support so the documentation on…
kentcdodds
  • 27,113
  • 32
  • 108
  • 187
3
votes
1 answer

Coverting RFC 3339 DateTime Objects in Android returned from Google Tasks API to String

I am using the Google Tasks API to return values, such as task title, task note, and task due date. When I try to output the due date (stored as RFC 3339) as a string I get java.lang.IllegalArgumentException. I am trying to use…
3
votes
0 answers

What is the difference between Google Calendar and Google Tasks?

I am confused what is the difference between Google Task and Google Calendar? Initially I thought I wanted to use Google Calendar but now I realize that I want to use Google Task. They even have different APIs. This just confuses me: Google Task…
Jaggu
  • 6,298
  • 16
  • 58
  • 96
2
votes
1 answer

Where is com.google.api.services.tasks.TasksRequest?

I'm trying to install this Google sample project (tasks-android-sample): http://samples.google-api-java-client.googlecode.com/hg/tasks-android-sample/instructions.html ...but I'm getting unresolved classes. The project comes with jars but doesn't…
Barry Fruitman
  • 12,316
  • 13
  • 72
  • 135
2
votes
1 answer

400 Bad Request when updating DueDate or creating new task with DueDate

I am trying to update dueDate for task: Task updatedTask = service.tasks.get(gTask.getTaskListGuid(),…
Hleb
  • 295
  • 1
  • 4
  • 15
2
votes
1 answer

Google Tasks assigned from a Google Doc, not showing when queried via API

Recently Google Workspace released the possibility to assign tasks to people in Google Docs. Those tasks appear then in the Google Task app, however, when queried via API (or even Zappier) they don't show up. Anyone has tried it? I want to pull them…
Álvaro
  • 21
  • 2
2
votes
1 answer

How to get Google Tasks task link?

Is there any way to get a link to task? (like tasks.google.com/lists/some_list_id/tasks/some_task_id) So, for example, if I have an task_id and a task_list_id from Google Tasks API and want to have an ability to go to Google Tasks from my app.
2
votes
3 answers

Access Google Task API Ruby/RoR

And How can I access Google Task API to get/update the google task list by ruby/RoR?
Sayuj
  • 7,464
  • 13
  • 59
  • 76
2
votes
1 answer

Check if Cloud Task Queue is empty

I'm working on a project with a Node.js backend. It has a Cloud Task queue component and it creates hundreds of tasks. I need to run something once all the tasks are completed. I've been pouring over the Cloud Task queue documentation and searching…
2
votes
1 answer

Google Cloud Tasks: Run a task before it's scheduled ETA

I have a use case where I schedule a task 24h into the future after an event occurs. This task represents some sort of "deadline" for other things to happen. The scheduled task triggers a creation of a report. If not all of the above mentioned…
2
votes
2 answers

Exceeded soft memory limit of 512 MB with 532 MB after servicing 3 requests total. Consider setting a larger instance class in app.yaml

We are on Google App engine standard environment, F2 instance (generation 1 - python 2.7). We have a reporting module that follows this flow. Worker Task is initiated in a queue. task = taskqueue.add( url='/backendreport', …
2
votes
1 answer

Return All Tasks dosen't return completed tasks

I develop a little command-line app to bring google tasks, but return all tasks in a specified task list does not return completed tasks, wish showCompleted is true by default So I tried many times in Live API and only uncompleted tasks are…
user11396066
2
votes
0 answers

Due date not updated in Google Tasks - Gmail UI

I created a new task in the new Gmail Tasks side panel and set the due date. I edited the due date of the task by using Google Tasks Edit API. The changes are not reflected in Tasks side panel of Gmail. But when I get the task using Get Tasks List…
Ranjani
  • 1,015
  • 1
  • 9
  • 15
2
votes
0 answers

Embedded Script (Tasks List API Sample) throws "'Tasks' is not defined" error (works when run in Scripts)

When attempting to embed Google’s sample provided for the Tasks API (code found here) into Google's Classic Sites I get the dreaded “script.google.com refused to connect”. The logging error is "Tasks" is not defined at getTasksLists(simpleTasks:15).…
leoraelkins
  • 173
  • 1
  • 1
  • 13
2
votes
1 answer

Getting rid of nested Task type

Is it possible to get rid of nested Task generics? For every continueWith statement, a new Task is added within the type. Every continuation is part of the type. Ideally I would return one Task which consecutively executes every single task and…
GroovyP
  • 798
  • 1
  • 6
  • 15
1 2
3
12 13