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

Wrong Tasklist ID from Google Tasks API

Spent hours and cannot seem to understand what went wrong with my Google Tasks API. Created new project in GCP Enable Google Tasks API Added a key and downloaded services-account.json Using the official Google Client PHP library Managed to…
Calvin Seng
  • 193
  • 1
  • 19
0
votes
2 answers

Apply for higher quota for Google Tasks API?

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 page under IAMs does not allow you to apply for an increase. How do we…
0
votes
1 answer

How to call uncompleted tasks with google tasks api python

I was wondering how I can call a list of my uncompleted tasks using the google tasks api. I currently am using the example code found at https://developers.google.com/tasks/quickstart/python and I'm wondering how I can adapt this to list tasks not…
PaddyCooper08
  • 111
  • 2
  • 6
0
votes
1 answer

How to return failed task result in continuation task?

I am using Google's Task API in Kotlin and am faced with the next situation: ... val deleteTask = getItem(id)?.continueWithTask { task -> if (task.isSuccessful) task.result?.toObject(ItemModel::class.java)?.let { deleteFiles(it.media)…
0
votes
1 answer

How to return failed task result in continuation task

I'm writing my first app in Kotlin and am using Firestore & Firebase Storage. In the process of deleting a document, I want to delete all files in Storage that the document references (as it is the only reference to them in my case). If the Storage…
0
votes
1 answer

Google Tasks and Calendar: Use in a server application

Imagine I have some application, which reads and writes data to Google Tasks and Google Calendar. It works in the background, i. e. checks the data in regular intervals and updates them (without interaction with the user). That is, the user logs…
Glory to Russia
  • 17,289
  • 56
  • 182
  • 325
0
votes
1 answer

GCP PubSub (or GCP Tasks) Synchronous Processing per User

I have a use case where I need to process a set of events. I need them to process in parallel holistically but serially for each user. Can this be done in PubSub (maybe GCP Tasks?)? For Example: 6 events come in at one time (User_A_Event_1,…
0
votes
0 answers

Google Apps Script creates duplicate tasks

Using labels and filters I set up a label for all incoming mail.This code 1. Generates an email receipt, generates, sends it // 2. Generates a task with the Username as the title, date, html link to the email, and email as the notesI am working from…
JenV
  • 21
  • 1
0
votes
1 answer

Cloud Tasks API multiple tasks in the same request

I saw limitations when sending multiple requests. In the documentation, there is no example of how to set up a request with several tasks: $client = new CloudTasksClient(); $queueName = $client->queueName($projectId, $locationId,…
Alisson
  • 33
  • 9
0
votes
1 answer

Insert Task in Google Task API , Error: 403, message: Request had insufficient authentication scopes

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

Error while deploying Google Cloud Task Client

I am trying to create a task using Google Cloud Tasks but i'm encountering an error. My code compiles perfectly but when it reaches the Cloud Tasks initialization line: const data = snap.data(); let expirationInSeconds if(data.booking_date_ts -…
0
votes
2 answers

GTasks API Service Account: Client is unauthorized to retrieve access tokens using this method

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 without the Consent Screen. Now i'm trying to consume…
0
votes
1 answer

How to prevent memory leaks from gms.Task?

I use tasks in viewModel and want to remove listeners in onCleared but there is no method to do that, is it needed or not? I have found onCompleteListener with activity paramenter that in result clears listener in onStop but i'd like to leave…
0
votes
0 answers

How to intermittently check for new tasks that have been added to a task list in nodejs Google Tasks API?

I've been following the quickstart using google tasks with node.js here: https://developers.google.com/tasks/quickstart/nodejs and have got it working getting the task lists and then the tasks within them. However I'd like to check the task list(s)…
0
votes
2 answers

How to refer to my tasklist in a standalone script that will be used by other user

I have a spreadsheet linked to a standalone script that imports task from my tasklist. It works fine when I am the user but does not work in share user account. The codes in the standalone script is function getTasks() { var…
Sheils
  • 323
  • 2
  • 22