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
53
votes
8 answers

Generate an RFC 3339 timestamp similar to Google Tasks API?

I am in the process of building an app that syncs with Google Tasks. As part part of the syncing, I want to compare the local task and the API task, and see which one has been changed more recently. Each task from Google's API contains an updated…
levi
  • 23,693
  • 18
  • 59
  • 73
12
votes
2 answers

Create Google Calendar reminders with Google App Script

I am having a problem finding how to create a Google Calendar Reminder via Google Script. I am not talking about an event reminder, as in a reminder that is emailed or SMS to you before an event on your calendar. What I need, is to create reminders…
11
votes
6 answers

ERROR: (gcloud.app.deploy) Error Response: [9] Cloud build XXXXXXXXXXXX status: FAILURE

I had this error for almost an hour but found a solution resulting into a big worrying dilemma. The solution let to realization that one cannot run gcloud app deploy while there is a task in the task queue to be served by the server version to be…
11
votes
2 answers

Google Task API Move Task to different list

I'd like to know if the Google Tasks API provides the option to move a task to a different list or if I need to create a copy of the task. The move method seems to only allow moving within the same list.
Dan Schien
  • 1,392
  • 1
  • 17
  • 29
8
votes
2 answers

How to get all Google Calendar Goals and Reminders that are marked as DONE

In Google Calendar it is possible to: 1.) Mark a Goal as "Did it": 2.) Mark a Reminder as "Mark as done": 3.) Mark a Task as "Mark complete": I know that it is possible to use Google Tasks API to get a list of all Tasks marked as "complete" by…
Jinjinov
  • 2,554
  • 4
  • 26
  • 45
8
votes
1 answer

Google Tasks API: 403 Forbidden, Serving Limit Exceeded

Hello Google Tasks API team, Since a couple of days ago we've started getting "403 Forbidden" for many of our users. Can you please check what is going on? Our API console is clean, #calls are way bellow quotas. Caused by:…
user346648
8
votes
1 answer

Installed Python App And Google Client ID

I'm a python beginner, and I want to make a basic google tasks client. It'll be a native app. The point I cant get is how to keep the 'client secret' actually secret, as it's to be included in the program code. I've searched and found a post,…
user1621465
7
votes
2 answers

Auto scaling a Pull Queue in App Engine

I'm trying to implement a Push Notification system in PHP which needs to send massive notifications with the shortest delay possible, as described here: The drawback I see in this architecture is how to auto scale the Notification Workers. As far…
Javier Marín
  • 2,166
  • 3
  • 21
  • 40
7
votes
2 answers

NullPointerException only after I have setServiceAccountUser() for GoogleCredential object (Grails/Java)

I receive a NullPointerException with very little detail when I attempt to setServiceAccountUser(ACCOUNT_TO_IMPERSONATE) on my GoogleCredential, build a Google Tasks Service Object and subsequently try to send a request for a list of Tasks from…
stevenm
  • 173
  • 1
  • 8
6
votes
1 answer

Syncing Google Tasks created in Google Apps with those created in our Web Application (Grails/Java)

We want to integrate Google Tasks API into our Grails Web Application but I have a number of concerns with regard to the syncing of tasks and prevention of conflicting data. What is best practice for syncing Tasks, at the point when a Task has been…
stevenm
  • 173
  • 1
  • 8
6
votes
3 answers

Getting AccessTokenRefreshError: invalid_grant in Google API fro service account

I am following this example https://code.google.com/p/google-api-python-client/source/browse/samples/service_account/tasks.py credentials = SignedJwtAssertionCredentials( '141491975384@developer.gserviceaccount.com', key, …
user26
  • 3,937
  • 5
  • 22
  • 22
5
votes
3 answers

Google Tasks API BatchRequest triggers "Duplicate Request ID in Batch Request"

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 years. I can't find anything in the request that indicates a…
5
votes
2 answers

Google / OAuth 2 - Automatic logon

I'm playing a bit with OAuth 2.0 in combination with some Google API. Although the authorization process is quite easy, I'm facing a problem with the automatic authorization after the initial authorization has been completed. So: 1. Authorization…
Rhapsody
  • 6,017
  • 2
  • 31
  • 49
5
votes
1 answer

Google Tasks Api - Error: 3 INVALID_ARGUMENT: Request contains an invalid argument

I've written the below code to create a task whenever a new item is added to a collection in the firestore. import * as functions from 'firebase-functions' import * as admin from 'firebase-admin' const { CloudTasksClient } =…
SIMMORSAL
  • 1,402
  • 1
  • 16
  • 32
5
votes
0 answers

Where to view completed tasks in Google Task Queue?

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 reason for wanting completed tasks on this page…
1
2 3
12 13