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
2
votes
1 answer

Google App Engine 302 status Task Queues in production only

I'm receiving a 302 response for Task Queues on Google App Engine (Standard), only in production. My local environment processes them fine. (dev_appserver.py) I'm running Laravel 4.2. I've created a queue.yaml file and deployed that as…
2
votes
2 answers

Previous task(s) waiting on Firebase Realtime Database need to complete first before new one starts

I'm using the Task API in my app to retrieve data from Firebase Database, which is usually from different nodes. I have a helper class for Firebase Database like so: public class FirebaseDbHelper { public Task getData() { …
AL.
  • 36,815
  • 10
  • 142
  • 281
2
votes
1 answer

Firestore task whenallcomplete() - task is not yet complete

First time using the Google Tasks API for Android and stuck with this problem: either using Tasks.whenAllComplete or .whenAllSuccess() and OnCompleteListener or OnSuccessListener I'm getting the error Task is not yet complete even when I check…
Marcos
  • 194
  • 1
  • 13
2
votes
1 answer

Getting "Extra args block must be a javascript object literal." error when trying to move a Google Task

I am trying to change the parent of a new Google task created using Google Scripts. Since the parent must be changed using "move," I'm trying the following: var oldtask = Tasks.Tasks.get(TASK_LIST_ID, TASK_ID); var newtask =…
2
votes
0 answers

Can I access and create the reminders in Google Calendar?

These are the ones I'm talking about: Google Reminders Or alternatively can I see my reminders from the Google Tasks API in my Google Calendar?
Jakkra
  • 641
  • 8
  • 25
2
votes
1 answer

How to insert task in google task?

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
2
votes
1 answer

Task queues end up with "(2062, 'Cloud SQL socket open failed with error: No such file or directory')"

We are building an application which uses heavy backend tasks (Task queues), And in each task - we are doing I/O in Google Cloud SQL. As GAE have limitation for 12 concurrent connections (not sure whether this is issue? I saw at…
Love Sharma
  • 1,981
  • 1
  • 18
  • 37
2
votes
2 answers

Google Api Tasks Client Library for windows phone 8.1

Where i can find sourse code for this google tasks api? Or dll for windows phone 8.1? Nuget link for this library: google api tasks v1 This library doesn't support windows phone 8.1 (i need it for wp8.1 winrt core, it platform like supported windows…
2
votes
1 answer

Using Google Tasks API in Google Apps Script - Access not Configured

I am getting 'Access not configured. Please use Google Developers Console to activate the API for your project' message. I followed the guidance in the Google Developers Console documentation. I selected the 'Advanced Google Services' submenu under…
2
votes
0 answers

Failing to create client ID, due to duplication of signing fingerprint by another Android OAuth2 client

For updating our Android app with newly adding Google Tasks support, we've tried to create new Client ID with our own application's fingerprint and package name. Unfortunately, it keeps falling with message "The signing fingerprint you specified is…
2
votes
3 answers

How to create a child task in Google Apps Script Tasks API

I have been experimenting with the Google Apps Script Tasks API to create new tasks from emails. I have successfully created TasksList, and Tasks within these lists using both of the following approaches. However, I have been trying to create a…
Aurovrata
  • 2,000
  • 27
  • 45
2
votes
2 answers

Using Google APIs Client Library for .NET in portable library

They write:"Supported Platforms: Portable Class Libraries". But then I write this code in portable class, I have a error: public async void MyFuncrion() { UserCredential credential = await GoogleWebAuthorizationBroker.AuthorizeAsync( …
2
votes
1 answer

Can't find Google tasks API

I am working on the app in which I fetch the contacts, Photo albums, use google map, calendar using GData. they all working perfectly but I am not able to fetch the tasks of the google. so can anyone help me for the Google tasks API.? Thank you in…
user7388
  • 1,741
  • 2
  • 19
  • 25
2
votes
1 answer

Tasks API using Google Apps Script (complete task)

I am trying to set the status of a task as completed using Tasks API. It shows that the code has completed successfully, but the task is not being marked as completed. Also, when I try to get the status of the task after update, it shows status as…
Cartman
  • 498
  • 8
  • 10
1
vote
3 answers

Why do I keep getting 'Bad Request' when I try to post a task in Java using the Google Task API?

I'm building an app coded in Java/Android and using the Google Task API but I have hit a major problem. I try to enter a Due or Completed date the Task API returns a 'Bad Request' error. I have however managed to post tasks successfully when I don't…