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
4
votes
0 answers

How to access new Room Tasks via Tasks API (or other Google API)

G Suite users have recently gained access to an integrated Gmail interface. In this interface, Google Chat's rooms now have their own Tasks integration Has anyone found resources for accessing and working with these Chat Room Tasks via an API. I'm…
4
votes
1 answer

Some issues with `go get cloud.google.com/go/cloudtasks/apiv2`; undefined: grpc.RoundRobin

The subject in question: https://cloud.google.com/tasks/docs/creating-http-target-tasks?hl=ru Programming language: GO First, download this package: go get -u google.golang.org/genproto/googleapis/cloud/tasks/v2 No problem. Next I download this…
4
votes
1 answer

Google Tasks API does not give update about Task completion when New Gmail Theme used

First I created a Task using below link: https://mail.google.com/tasks/canvas Then I marked it as Completed. When I checked the API Response for the same using: Services > Tasks API v1 > tasks.tasks.list [Returns all tasks in the specified task…
Niraj
  • 1,939
  • 20
  • 29
4
votes
1 answer

how to get tasks that have a due date from task lists in nodejs Google Tasks API?

in this page there is a nodejs example to get all task lists from Google Tasks. I get it to work and I've been playing around to get the tasks of each task list that have a due date, but i haven't even been able to get all tasks associated to a task…
4
votes
1 answer

How to trigger Google Script when a Google Task is marked "completed"

Google Apps Script allows scripts to be triggered by a variety of events; see here. I'd like to update the tag on an email (in Gmail) when the user marks a task completed (in Google Tasks) but there doesn't seem to be a trigger for this. However,…
jkf
  • 234
  • 2
  • 11
4
votes
3 answers

" Google API message " : " This API does not support parsing form-encoded input. "

I have written the following javascript to create a tasklist in google: postData = {'title':'Netsuite List'}; access_token = 'xxxx'; url = 'https://www.googleapis.com/tasks/v1/users/@me/lists'; headers['Content-type'] =…
Anshul
  • 109
  • 1
  • 11
4
votes
0 answers

Steps to sync to Google Tasks API

I am making a To do list android app. I want to sync the tasks to Google Tasks. I am using Google API client libraries for Java. I have implemented all the authentication process as described in the documentation. But i am somewhat confused on what…
Amit Jayant
  • 2,501
  • 2
  • 29
  • 38
4
votes
1 answer

Using Joda-Time Library to Convert String to DateTime Format in Google Tasks API

I have a date/time string which needs to be sent to the Google Tasks API but I can't figure out how to convert a Joda-Time library DateTime object to a Java DateTime object. I'm using Android as the platform. The string starts off as "2012/07/19…
Eugene van der Merwe
  • 4,390
  • 1
  • 35
  • 48
3
votes
1 answer

Google Tasks Authentication error

I've started programming an Android application which implements a ListView and a simple Database and offers the opportunity to receive tasks from a specific Google Account and than add them to the ListView. I used this Tutorial and the Tasks API to…
vein
  • 313
  • 5
  • 16
3
votes
0 answers

Unable to add Tasks to any Lists - Quota Exceeded Error

I have recently encountered a problem with adding new tasks to Google-Tasks. Both the Google Calendar integration (in any browser) and the Google Tasks App (on Android - Galaxy S9+) report an error whenever I try to add a new task. On Google…
Mook
  • 31
  • 1
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
2 answers

Gadget OAuth2 Authorization

I am developing a gadget (html, JS) to run inside (Google Calendar page). I need to show user's tasks there so I need a connection to Google Task Api. I need to use OAuth2 authorization and such requests as: GET…
1
2
3
12 13