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

Google Task API "update" property time does not change when modifying details or date/time

When changing the "details" field ("notes" in the API response) or Date/time field ("due" in the API response) of a task in the UI at https://mail.google.com/tasks/canvas does not change the "updated" time of the task and by extension the "updated"…
1
vote
1 answer

Google Tasks API not returned user assigned

Google Tasks on Google Space in Google Workspace allow to assign user to any task, displayed on Room. How to get from Google Tasks API assigned user to task? Response hasn't information about this:…
kicaj
  • 2,881
  • 5
  • 42
  • 68
1
vote
1 answer

how to use google task (tasklist.tasks.get) in appscript?

how to use google task (tasklist.tasks.get) in appscript? https://developers.google.com/tasks/reference/rest/v1/tasks/get i want use "tasklist.tasks.get" to find out tasks title form task.parent(ID). i know need to write in 2 obj , but i don't know…
1
vote
1 answer

Can I create extended properties in Google People API and Task API?

I have added an extended property to a Google calendar entry and been able to read it back successfully. The format of the json is like this: "extendedProperties": { "private": { "MyPropertyName": "yes" } }, I want to do the same thing to…
1
vote
0 answers

Authentication Flow for Google Tasks API

I am trying to access the Google Tasks API from my Raspberry Pi to synchronize Tasks. Now comes a bit of a rant: Because it should run on my headless Raspberry Pi, I cannot use a webbrowser there. In the Tasks API Docs it says I can use an API key.…
1
vote
1 answer

How do I fill in the @me parameter in Google Tasks API calls?

I am trying to make a call to the Google Tasks API (link). There is a parameter in the URL call @me but I am not sure how to fill it? I went ahead and created a userID for a project where I enabled Google Tasks API, and I tried to use that userID,…
1
vote
2 answers

Google task api due field

I am using google task list api and getting list from server. I created three task with different due time and date. I am getting date for every task but getting same due time. Can you please elaborate why this is happening? Output: { "kind":…
1
vote
1 answer

Google Task API PHP: Setting the TaskList ID & "Invalid task list ID" error

I'm trying to loop through task lists in order to generate a list of tasks using the Google Task PHP library. I have: Done all the credential stuff & can call the API I can get task lists A list of tasks for the respective task list output…
Ryan Dorn
  • 679
  • 2
  • 8
  • 20
1
vote
1 answer

Authorization in Google Tasks API with ClientLogin

Is it possible to authenticate with client service libraries via ClientLogin? There are only OAuth2 examples in Google Code but it requires unneeded manipulations.
Jevgeni Smirnov
  • 3,787
  • 5
  • 33
  • 50
1
vote
0 answers

Google Tasks API Set Up Help for Python/Flask Application

I'm new to using Google APIs in general. Could anyone help me figure out how to set up this tasks API correctly for my python/flask/sqlalchemy application? I got the API key, client ID (and downloaded as credentials.json), pip installed the…
1
vote
1 answer

Get Tasks data using API key

I am trying to get google tasks data using API key. I have referred below…
user804343
  • 31
  • 2
1
vote
0 answers

Is it possible to assign tasks to another user? (different of the logged in)

It would be very useful to manage projects. All the API I found is to work with tasks for the user logged, but at any company there are managers, coordinators, to assign task, but I don't know if the API allowed it. Thanks in advance
1
vote
1 answer

Google Task API

I am going to fetch Google Tasks via API on the server without using the browser but when I am calling the API, it gives me redirect link to authenticate the application as in the documentation here. I don't want the redirection to browser, verify…
engrhussainahmad
  • 1,008
  • 10
  • 19
1
vote
1 answer

Cloud Tasks Not Triggering HTTPrequest Endpoints

I have one simple cloud task queue and have successfully submitted a task to the queue. It is supposed to deliver a JSON payload to my API to perform a basic database update. The task is created at the end of a process in a .net core 3.1 app running…
flaglerkid
  • 31
  • 3
1
vote
1 answer

How to add a new task in google task api

I'm trying to figure out how to add a task using the Google tasks API. The docs leave a lot to investigate and I seen to be stuck. This is my code: // Get the API client and construct the service object. $client = getClient(); $service = new…
micksp
  • 123
  • 2
  • 15