Questions tagged [google-tasks]

Google Tasks API allow developers to search, read and update Tasks resources stored by Google Tasks service.

120 questions
3
votes
1 answer

Use Laravel Queue with Google Tasks on App Engine Standard

I'm running Laravel 6 on Google App Engine Standard and trying to make Laravel Queues work with Google Tasks natively. Currently I'm creating (dispatching) and handling tasks with custom classes, but I would like to use Google task as native…
3
votes
1 answer

How to create repeating tasks with Google Tasks API?

Can't create repeating tasks with Google Tasks API Google Calendar API https://developers.google.com/calendar/v3/reference/events#resource has recurrence key. "recurrence": [ string ], But I can't find recurrence in Google Tasks API. How I…
Artem K
  • 43
  • 3
3
votes
3 answers

How does one check for completed Google Tasks in a Google script?

I'm attempting to write a Google Script that accomplishes the idea contained in this pseudocode: access a specific Google tasklist for each task in that tasklist { if the task is completed { perform an operation } } I've run up…
3
votes
2 answers

Newly created Google Task omits the supplied "TaskLink" property

I am trying to make a small Google Script that would automatically add Google Tasks to the "My List" TaskList after searching my GMail emails. Everything goes fine except for adding a link to the email from which the Task is generated from. Trying…
3
votes
2 answers

How to set Google Tasks Due Date

How do you set the due date for a task with the google tasks service in apps script? Tasks Service Trying to set this value to a given date, but this seems to only update the local value not the server value as tehhowch suggests task.due = new…
CTOverton
  • 616
  • 2
  • 9
  • 20
3
votes
1 answer

Google Contacts Tasks Calendar API Cost

I know the Google Maps API charges sites that use the Maps API heavily. I can't find similar information on charges for Tasks, Calendars, and Contacts. Are there such limits or are these totally free? Can anyone point me to a place this is…
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
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
0 answers

Is it possible to create a custom event for calendar similar to tasks add on in calendar

I am a beginner with Google App maker. I want a custom calendar event similar to 'outOfOffice'/AppointmentSlots'. I used the tasks add on there is a new event type called 'Task' appearing when I try to create an event. Also, There are new…
2
votes
1 answer

Why is Time not setting when inserting new task using Task Service?

I am trying to insert new task with due date and time in Google Tasks using Tasks Service. The issue i am facing is that date is setting correctly while time is not setting. The code is given below: I had tried all the solutions given on…
Sohail Malik
  • 305
  • 1
  • 2
  • 12
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