Questions tagged [google-tasks]

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

120 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
2 answers

Firebase tasks pass function as queue payload

I'm trying to create a generic task queue in firebase. Following docs I'm supposed to create a new queue for each function I need but I want to create a generic queue that will accept any function. I've tryed creating something like this export…
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
0 answers

Batch delete task lists

I had a Zapier action that created 100s of gtask LiSTS I deleted them manually which took hours but they returned Any have a way to delete a set of lists by mass I found them in files data. Jason and deleted them but they returned I think this is a…
0
votes
0 answers

How do I prevent google task from scrolling to the new set date with a bookmarklet?

Whenever I am changing the date of a task in Google task, the UI scrolls down to the new date which I find very distracting. Is there any way to disable this behaviour with a bookmarklet? I tried looking for a Scroll function with the Inspect tool…
0
votes
0 answers

Pull tasks of all users in a Google Workspace Organization

It appears the Google Tasks API tasklists resource pulls the list of tasks associated with the current user. I would like to specify the user that the task list will be generated for. The plan would be to generate a list of tasks and the documents…
0
votes
1 answer

Google Tasks as a standalone window (or app)

I'd like to use Google Tasks, not from the sidebar of Gmail or Google Calendar, etc., but as a standalone browser window. Even better would be to open it as a Chrome / Firefox webapp (i.e. a standalone non-browser window).
Bastiaan Quast
  • 2,802
  • 1
  • 24
  • 50
0
votes
0 answers

Google Tasks PHP add multipart file

I'm using the Google Tasks PHP SDK. It works very when I send a basic url with parameters. But I don't know how can I do to add multipart files to request. Here is my function to build a request : private function newTaskRequest($method, $url,…
John
  • 4,711
  • 9
  • 51
  • 101
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

google task api only insert taskList get Quota Exceeded

I am using Google Tasks API in php for managing my lists and tasks but recently I am having a problem with inserting a new task list, the point is that all the other calls are working correctly. Any suggestions to resolve the error? So I try to be…
0
votes
1 answer

How to increase wait time for Google Cloud Tasks?

I am creating a lot of tasks to be processed in Cloud Tasks, but some of them are failing due to lack of available resources (instances). Please see the image below: As you can see, the average time Google waits before throwing http 500 error is 10…
Thiago Hencke
  • 301
  • 2
  • 11
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
0 answers

Why "google.scrpt.run" does not work with google tasks auth in GAS script?

I'm using google.script.run in html template file, and it works well as I expected. but it doesn't work after adding the oauthScope "https://www.googleapis.com/auth/tasks" to appsscript.json file. Error log is just uncaught, so couldn't investigate…
0
votes
0 answers

Google Cloud Tasks Celery migration confusion

I'm having trouble understanding how to use google cloud tasks to replace celery... Currently, when you hit endpoint api/v1/longtask celery asyncs the task immediately and returns 200. Task runs, updates, ends. So with cloud tasks, I would call…
0
votes
0 answers

Google Tasks Shared List Limit?

I am admin to a Google Business account. I have 12 users in the account. Some of my users are able to have 3+ lists shared, but others are getting prompts that they need to have "Premium" in order to be able to have more shared lists whenever they…