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
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…
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

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

Google tasks API patch overrides time portion

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, but even if I'm sending only title, it overrides…
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
2 answers

Empty title when inserting a Google Task with google apis node.js client

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: , title: "hello" }, (err, res) => { …
Mathias Gilson
  • 483
  • 1
  • 5
  • 11
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

Google Cloud RunTask before its scheduled to run

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 the page and they are prompted. If they accept the…
0
votes
1 answer

Taskqueue HTTP 1.1 404 error Google App Engine

We are executing taskqueue. Based on documentation here , we have created a new queue called "generate-reports". Our queue.yaml looks like this. - name: generate-reports target: v2.task-module rate: 5/s max_concurrent_requests: 10 …
Jack tileman
  • 813
  • 2
  • 11
  • 26
0
votes
1 answer

Why don't I get my Google account with AccountManager?

I want to make a request for my Android application to display a Google Tasks task (in an AsyncTask). public class TacheAsyncTask extends AsyncTask { private AsyncResponse delegate; private Activity…
Pierre
  • 1
  • 1
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

Issue running Mocha tests with @google-cloud/tasks on AppEngine (@grpc/grpc-js only works on Node ^8.13.0 || >=10.10.0)

Using GCP Cloud Build to run some Mocha integration tests that uses the "@google-cloud/tasks" api. On running the pipeline this step fails with an@grpc/grpc-js only works on Node ^8.13.0 || >=10.10.0 error. The error occurs in the yargs module. Any…
cjt
  • 273
  • 4
  • 8
0
votes
1 answer

How to wait on Google Play Services Task(s) results to come with a timeout?

Most of the Google Play Services remote function calls return a Task that will be completed some time in the future. I have multiple tasks that I want to wait but no longer than a certain time out. There is Tasks.await() that will wait on one task…
Randy Sugianto 'Yuku'
  • 71,383
  • 57
  • 178
  • 228
0
votes
0 answers

Google Tasks API "login required" after GET request

I want to implement a simple task editor on my PC that edits google tasks, creates, reads, etc. I followed the Authetification by Google, and I can see the tasklists I created (I also got the security alert), but I cannot send GET requests without…
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