Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
26 views

I'm using the Task API in Google App Scripts. When getting a list of tasks, if I don't explicitly specify showHidden: true in the request, the completed tasks are missing. Shouldn't showCompleted: ...
Dolav Soker's user avatar
0 votes
0 answers
71 views

I have the below set up to try and get users data from google calendar and tasks APIs. Googleauth.ts import { google } from 'googleapis'; import { NextApiRequest, NextApiResponse } from 'next'; const ...
RandomDeveloper's user avatar
0 votes
1 answer
86 views

I created some cloud tasks queues in the account and was trying to retrieve the data using google cloud inventory APIs but no data is being returned even though the asset is mentioned as supported in ...
HariJustForFun's user avatar
1 vote
0 answers
155 views

Goal: I'm trying to create a Google Chrome Extension with the sole purpose of interacting with Google Tasks in the Google Chrome sidebar. Similar to the sidebar available within Gmail (https://mail....
wr4ng's user avatar
  • 11
1 vote
0 answers
183 views

I'm trying to build a simple tasks web app where users can login with their google accounts and access google tasks via the API. It's basically for my own use where I want to add an advanced search ...
Sln's user avatar
  • 11
0 votes
1 answer
106 views

I try to receive the list of google task from react native app. I created a new app : npx react-native init GoogleTasksApp Added the package : npm install @react-native-google-signin/google-signin ...
Maxim Uglov's user avatar
0 votes
1 answer
1k views

I need to create Google cloud task with long time of retry (a year for example), this will be simple post request to endpoint of my application. I created task with const task = { .....
Alex-1999's user avatar
0 votes
1 answer
311 views

I have the following scenario: Front-end -> Cloud Run Service on serverless mode. Based on the user action, it will call a long running and parameterized process, which can take more than one hour ...
SidiBecker's user avatar
0 votes
0 answers
69 views

I am trying to create a Google task using the Task API, and when doing so, add an extended property or Client data. Then retrieve the property or data when I read the task later. My json when creating ...
Jeff McKay's user avatar
1 vote
1 answer
180 views

I'm using the script.google.com editor to try to delete tasks from a list as part of a bigger project however I keep getting an error which says API call to tasks.tasks.delete failed with error: Task ...
Ryan's user avatar
  • 13
1 vote
1 answer
116 views

I am new to coding and have put together some code to reference Google Sheet values to create Google Tasks. However, when I run the script it doesn't seem to check the existing task title and dueDate ...
Roe's user avatar
  • 43
0 votes
1 answer
289 views

I am trying to create a task in my calendar from sheets. I have turned on advanced services and I am able to create task. The problem is more with the way I am trying to enter the fields or app ...
Rob's user avatar
  • 11
0 votes
1 answer
305 views

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. ...
pathikrit's user avatar
  • 33.7k
0 votes
2 answers
433 views

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'...
luicfrr's user avatar
  • 1,818
1 vote
1 answer
250 views

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 ...
Ritik's user avatar
  • 63
0 votes
3 answers
2k views

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 ...
Bastiaan Quast's user avatar
4 votes
2 answers
1k views

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 ...
Álvaro's user avatar
  • 41
1 vote
1 answer
187 views

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: &...
devilteo911's user avatar
0 votes
1 answer
310 views

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 ...
Sourazou Soury Bountoulgou's user avatar
0 votes
1 answer
537 views

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 ...
Thiago Hencke's user avatar
0 votes
1 answer
134 views

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 ...
BlueBoy's user avatar
  • 866
1 vote
1 answer
913 views

I am trying to build a realtime bid matching engine, where the bid matching logic resides inside a firebase cloud function, and i want the cloud function to have only one instance running at any point ...
Suman Mondal's user avatar
3 votes
1 answer
721 views

In this code below I have a client which creates multiples tasks inside a map loop. However, this process doesn't complete and returns the follow network error: Error: request to https://cloudtasks....
Rodrigo C. Martins's user avatar
0 votes
0 answers
50 views

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 ...
liberrace's user avatar
0 votes
0 answers
240 views

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, ...
Denis's user avatar
  • 578
1 vote
1 answer
482 views

How to set MAX_ATTEMPT of the tasks in google cloud queue in code? When I create new task, I want to set how many repetitions of a given task should be, can I do it from the code below? I have google ...
markWanka's user avatar
  • 804
2 votes
1 answer
2k views

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 ...
Konstantin Kim's user avatar
5 votes
3 answers
840 views

Starting Sept 13th the Google Tasks BatchRequest update workflow is triggering a 400 error return "Duplicate Request ID in Batch Request" within an application that has remained stable for ...
David Levinson's user avatar
1 vote
0 answers
262 views

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 ...
Tibor's user avatar
  • 357
0 votes
0 answers
127 views

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 ...
Jessica Guevara's user avatar
0 votes
0 answers
542 views

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 ...
lucas menezes's user avatar
1 vote
2 answers
1k views

Our quota for Google Task API "per day" has been exhausted. When we try and increase the quota, it says you need to apply for higher quota by "clicking here". However the Quotas ...
strangetimes's user avatar
  • 5,263
2 votes
2 answers
1k views

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 ...
swapnil chaudhari's user avatar
0 votes
1 answer
253 views

I'm trying to use patch as an update option for a google tasks from the API https://developers.google.com/tasks/reference/rest/v1/tasks/patch. So far as I understand it should update only sent fields, ...
Dmitriy Vodnik's user avatar
1 vote
1 answer
433 views

I'd like to add some meta information to Google Tasks when creating a new task via API, is it possible? All I can see is a "notes" field which can be read by users, it's not what I need.
Alexey Ursul's user avatar
1 vote
0 answers
107 views

I have a GAE project, connected with an App Engine Queue (formerly 'push queue'), which should handle multiple tasks at once (target would be ~30 tasks per running instance). Somehow, I'm facing a ...
winterstefan's user avatar
0 votes
1 answer
377 views

I am trying to insert a new task into TaskList. here is my code: $client = getClient(); $service = new Google_Service_Tasks($client); $optParams = array('maxResults' => 10); $serviceTasklist = $...
Minh Trung's user avatar
1 vote
1 answer
305 views

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. ...
engrhussainahmad's user avatar
2 votes
2 answers
3k views

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 = ...
Jack tileman's user avatar
3 votes
0 answers
831 views

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 ...
Mook's user avatar
  • 31
4 votes
1 answer
800 views

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/...
Igor Menshenin's user avatar
0 votes
2 answers
205 views

When I use this code, a new task is created but the title is empty const service = google.tasks({ version: "v1", auth }) service.tasks.insert( { tasklist: <ID_OF_YOUR_TASK_LIST>, ...
Mathias Gilson's user avatar
0 votes
2 answers
265 views

I have a service account with Domain wide delegation and its been working fine for Calendar APIs. I am able to impersonate as other users within the organization to CRUD events in Google Calendar ...
Muhammad Taqi's user avatar
2 votes
0 answers
190 views

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 ...
prabha pattabiraman's user avatar
0 votes
1 answer
212 views

When using Google Cloud Tasks, how can i prematurely run a tasks that is in the queue. I have a need to run the task before it's scheduled to run. For example the user chooses to navigate away from ...
user616's user avatar
  • 861
-1 votes
1 answer
54 views

I tried to update the due date with rest API call out but is not updating on google and there is no error and exception for that too. I tried this from google developer console but it is not updating ...
Nazia Khanam's user avatar
1 vote
1 answer
1k views

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 ...
micksp's user avatar
  • 133
1 vote
1 answer
538 views

I currently have a task queue with tasks running. This is what my dashboard looks like: When I click on 'View' (under logs on the far right), it takes me to a page that looks like this: I am certain ...
Preethi Vaidyanathan's user avatar
6 votes
0 answers
817 views

My Cloud Task Queue dashboard for a particular task looks like this: It seems to only show pending tasks and tasks that errored out and need to be retried. How can I view completed tasks as well? My ...
Preethi Vaidyanathan's user avatar
3 votes
1 answer
3k views

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, ...
ProgZi's user avatar
  • 1,297