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

Google Tasks Authentication: Handle refresh tokens for Embedded Devices

I am developing for a personal embedded device (the Visionect e-ink display) that can run some node.js code to display tasks from my Google Tasks. It works fine but the token expires every so often. How do I handle the token expiry? I cannot show…
pathikrit
  • 32,469
  • 37
  • 142
  • 221
0
votes
1 answer

How to change Google task status from completed to Pending?

I am working on Google task api When i update task status from needAction to complete it change perfectly. But when change from completed to anything(Pending/needAction) It gives error means status not change when once it set to completed. any…
Ashvin
  • 4,010
  • 8
  • 23
  • 26
0
votes
0 answers

Creating a Task that is not All Day

When using the Tasks API to add a new task, the added task shows as "All Day" in the Google Calendar app. I cannot figure out how to change this using the API. I add a task using the Tasks API. In Calendar, it shows as "All Day". Using the Calendar…
0
votes
1 answer

Unable to add multiple tasks using google tasks api in react.js

I am using google task API for inserting tasks in google tasks & it's also working properly when I am only adding one task at a time but the problem came when I am inserting multiple tasks in one go. I tried every resource that I know but still…
0
votes
2 answers

How can I fetch google calendar tasks in iPhone SDK?

I want to retrieving Google Tasks for this first i try to get it from http://code.google.com/p/gdata-objectivec-client from gdata i use calendar API but it gives me only calendar events. Then I try to get it from http://code.google.com/apis/tasks…
0
votes
2 answers

Is there a way to read the star mark (favorite) through Google Tasks API?

In Google Tasks android app and in the web version, I have the possibility to mark a task as favorite (click that star). Yet in the API there is no task attribute to use to get that boolean value. Link to the Task…
0
votes
0 answers

Google Tasks API returns wrong TaskList ID

I'm trying to get the tasklist ID via API, but I got the wrong ID. when I tested getting tasklists in Google APIs Explorer - I got correctly ID here is my code(I took it from the documentation): use Google\Service\Tasks; function getClient() { …
0
votes
1 answer

Why the "due" argument doesn't take the in account the time portion of the timestamp?

I am currently developing a python script to manage tasks in Google Tasks. I would like to insert a task specifying both the date and the time. By going to the docs page, this is what is written: "due": "A String", # Due date of the task (as a RFC…
0
votes
1 answer

Is it possible to get all the history of reccuring google tasks with google tasks API?

I have a tasklist with repeating tasks inside. I managed to retrieve the tasks via google tasks API, but only for the current day. From the documentation I find it impossible to retrieve all the history of reccuring tasks. Am I missing…
0
votes
1 answer

Kotlin firebase executed with addOnSuccessListener even if fails

I have this piece of code and it is executed with .continueWith and addOnSuccessListener even if failed.I try with continueWithTask but i dont understand very well Tasks API. Please help me to understand how to do…
0
votes
1 answer

Changing A Tasks Title, or Date doesn't change the Tasks modified time - Google Tasks API

I am trying to troubleshoot why I cannot get changes to Task titles, and dates, from google tasks, based on the query param updatedMin: In the following scenarios, all Changes made to tasks are done in Google Tasks flyout via calendar.google.com or…
0
votes
1 answer

How to access and manipulate Google to-do list?

I need to access Google's todo list from Android programmatically. Please give me some clue where to start, and some examples if possible. Thanks in advance...
Droid-Bird
  • 1,417
  • 5
  • 19
  • 43
0
votes
1 answer

How to create a fan-out DeferredTask in Google App Engine - JAVA

I have a Java App Engine project and I am using DeferredTasks for push queues. /** A hypothetical expensive operation we want to defer on a background task. */ public static class ExpensiveOperation implements DeferredTask { @Override public…
0
votes
1 answer

Cloud Task not executing Cloud Function

I wanted to add security to my Cloud Function so I removed the allUsers access to call it - so I could instead only call it from a service account within my GCP. So I have followed the tutorial in the GCP docs exactly: Cloud Function async function…
0
votes
0 answers

How to configure credentials on Google Cloud Task

I have a function who delivers email-s with payment bills to some subscribers, and because of it we have to queue this function to ensure that this e-mail will be delivered. So we started to use Google Cloud Tasks from GCP to it. I created the queue…