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

which queue should I use (App Engine)

I have app engine application. I have users refresh tokens (In order to have access to google drive) in my database. Now, I want to create this: Every week (I mean every 7th day), I want to temorary download users PDF documents from google drive…
0
votes
1 answer

Authenticating Google Pull Task Queue with NodeJS client

I have a Pull Task Queue running on App Engine. I am trying to access the queue externally from the NodeJS REST client: https://github.com/google/google-api-nodejs-client I'm passing my Server API key in with the request: var googleapis =…
0
votes
2 answers

Google Tasks - updating status from Completed to needsAction

Google says that setStatus property for the Tasks can be 'completed' and 'needsAction': https://developers.google.com/apps-script/class_tasks_v1_schema_task#setStatus I'm using the API with the PHP library. When I insert a new task, I can set the…
Andrej
  • 415
  • 1
  • 7
  • 25
0
votes
1 answer

Google tasks api java for sample desktop application

I want to create a Java desktop application to control Google tasks but in Google tasks Api i found only samples for Android Does that mean i can only create tasks Api for android ?
elmetni
  • 104
  • 10
0
votes
1 answer

Tasks API not working for google-http-client version greater than 1.12.0

I am using Google Tasks API and also Gogole Adwords API....To use Adwords API i have to use latest google-http-client jar...but when I use the latest jar, Tasks API doesnt seems to work. Here is the code I am using for tasks HttpTransport…
0
votes
1 answer

add task using Google task api GAE login required?

Well I have a directory '/mytask' I have logged in there and can see a list of all my tasks there and now I wanted to make another directory '/addmytask' where I wanted to add a new task. But when I tried following code: service = build('tasks',…
sadaf2605
  • 7,332
  • 8
  • 60
  • 103
0
votes
1 answer

GAE google task api "Error: Not Found"

I have followed this google task api tutorial on GAE: https://developers.google.com/appengine/articles/python/getting_started_with_tasks_api I have tried everything they did. I have added this in the route: ('/mytask',…
sadaf2605
  • 7,332
  • 8
  • 60
  • 103
0
votes
1 answer

Required value: tasklist

Following the instructions here: http://www.pipetree.com/qmacro/blog/2011/10/automated-email-to-task-mechanism-with-google-apps-script/ I am trying to set up my gmail account so that I can email tasks to myself. However, using the included code and…
Tyler Shuster
  • 437
  • 1
  • 5
  • 12
0
votes
1 answer

Using 2-legged OAuth with Google Tasks API in Java

I’m trying to build a Sync application for Google Task API using Java. An additional constraint I have is to use 2-legged OAuth. I followed the article Using 2-legged OAuth with Google Tasks API for Google Apps domain administrators but the code…
0
votes
1 answer

Google task api authentication not working php

I have a file called TasksLogin.php which lets me login session_start(); require_once 'google-api-php-client/src/Google_Client.php'; require_once 'google-api-php-client/src/contrib/Google_TasksService.php'; $client = new…
mike628
  • 45,873
  • 18
  • 40
  • 57
0
votes
1 answer

Google Tasks API authorization

I can see many related questions on SO, but none that answers exactly what I'm confused with. I'm using Google Calendar API in a .NET desktop application that allows user to provide his/her username/password, logs in on his behalf and adds some…
dotNET
  • 33,414
  • 24
  • 162
  • 251
0
votes
1 answer

How to use Google task API ?Initialize Tasks Get TaskList etc.?

I want to use google task api and want to get tasklist,update,delete,add etc.. and I found this link https://developers.google.com/google-apps/tasks/oauth-and-tasks-on-android where step by step procedure is given on that link the library which are…
Khan
  • 7,585
  • 3
  • 27
  • 44
0
votes
1 answer

Google Task API access through Google Apps Script

When you query the Tasks Object for all of the Tasks each "Page" will contain the maxResults number of Results (default maxResults=100). If you have over 100 Tasks in a Specific TaskList or want to use pagination, you need to use pageToken to…
Brian
  • 433
  • 1
  • 7
  • 16
0
votes
2 answers

iOS Objective C Authorisation issue when Google OAuth 2.0

I am currently working with Google API with Objective C and OAuth 2.0 api is giving me a headache whole day I have been looking at google's documentation And I have managed to get to a stage where I can login and 'Allow Access' The issue arises the…
hsb1007
  • 119
  • 8
0
votes
2 answers

How to avoid OAuth2, use username and password to get google task resource

I am developing an application which is like google calendar, users input their google account to login, and synch from their google task. Is this possible without using OAuth2?
1 2 3
12
13