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 enable another user to run a script from a shared Google Sheet that reads my tasklist

I have a Google sheet that imports and updates tasks from one of my Google tasks list. Some of the tasks need to be completed by users of other accounts with shared access to the sheet. The code works fine when run from my account. But it fails…
Sheils
  • 323
  • 2
  • 22
0
votes
1 answer

Add a row to google spreadsheet when a google tasks is completed

I want Google apps script that should read the google tasks completed and add them as a row to google spreadsheet.. Can anyone help me
0
votes
0 answers

Adding tasks to G Suite users using a service account

I have a G Suite domain with working API access to the domain and calendars using a service account. I'd like to be able to insert tasks in to the task lists of my users. I'm looking at the documentation…
0
votes
1 answer

What's the best way to share resources between App engine instances

I plan to have multiple App engine instances read/write from the same BigQuery table. What's the best way (memcache, datastore, taskqueue,etc.. ) to handle this? Each instance will read from a config table and process rows. Is there a simple sample…
0
votes
2 answers

Date comparisons with formatDate in Google Apps Script are 1 day behind

Writing a Google Apps Script that looks at tasks via the Google Tasks API (as an Advanced Service) and checks their due date to see if they are overdue. If they are, it should then move them to the current day. Completed Project I used this code to…
0
votes
1 answer

Keep the task in the queue even after maximum number of retry limits in google task queue

I am using google task queues and I am setting task_retry_limit on the queue. The default behavior is the task is removed from task queue in the following cases : 1) when the task is executed successfully or 2) when the task reaches the maximum…
Karthik
  • 4,950
  • 6
  • 35
  • 65
0
votes
1 answer

How to call Google Tasks API from javascript?

I amtrying to call Google Tasks API for a app I'm building.When I make the call using Google's client libraries, it succeeds and return what is expected. function getAllTasks() { gapi.client.tasks.tasks.list({ tasklist:…
Abhishek Ranjan
  • 498
  • 3
  • 17
0
votes
0 answers

Google Tasks error 403 : Error :disallowed_useragent android

I am using Embarcadero RAD STUDIO 10.2 and would like to propose a Google authentification to connect on my Android application I have an error 403 : Error :disallowed_useragent when I compile my application for android but not when I compile for…
0
votes
1 answer

How do you use Google tasks API from an Android app?

I'd like to be able to create a custom app that uses Google tasks. How would I go about using Google tasks API from an Android app? In other words, how do I make an API call and use the response? I found a tutorial located here that was helpful.
Travis Rivera
  • 428
  • 1
  • 4
  • 19
0
votes
1 answer

Setting id to task using Google Task API returns 400 invalid value

I am using Google's Java API for an project. Strangely, inserting a task without setting an id works fine. However, inserting a task with a id returns a 400 invalid value error. The id is to be used for syncing local data with Google Tasks I'm…
0
votes
0 answers

How can i get Task notification on UI

I working in Google App engine with JAVA API. User can upload file in my web app and then I am creating a task to process the file. Now I need a way by which I can show the overall task progress in UI. How can I do this. Do I have to use push…
Pavan Tiwari
  • 3,077
  • 3
  • 31
  • 71
0
votes
0 answers

maxResult is not working when doing a tasks.tasklists.list

First of all the documentation is wrong. It says that the default value for MaxResult is 100, but if I do a query ( on my account with 31 lists) on the Tasks API explorer without setting the MaxResult parameter, I always get 20 items back with a…
onthemoon
  • 3,302
  • 3
  • 17
  • 24
0
votes
3 answers

ArrayIndexOutOfBound exception

I am trying to sync google tasks with my application. For this I have created a class in which I have created all the methods which needs to get task lists and create the list etc. Now I want to test If these methods are working or not. For this I…
user5669913
0
votes
1 answer

403 forbidden error on while accessing google task api

I am trying to sync with google tasks. I got the tasks list from default list. Now I want to insert a task in default list. I followed the documentation for this. https://developers.google.com/google-apps/tasks/v1/reference/tasks/insert Also I have…
Sid
  • 2,792
  • 9
  • 55
  • 111
0
votes
1 answer

Adding an Array of Tasks (PHP App Engine)

I have a foreach loop that goes through a list, and for each item on that list, I want to add a task. Currently I have this: use google\appengine\api\taskqueue\PushTask; foreach($list_array as $list) { $list_id = $list['id']; $task = new…
bryan
  • 8,879
  • 18
  • 83
  • 166