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

Unable to authenticate with Google Tasks - Homework

This week I had a small program to develop, I needed to create a Web Application(using a Java Servlet on localhost), this Web App is required to do the following: Obtain and show issues from public organizations from GitHub Obtain authentication…
0
votes
1 answer

Google Tasks API not using its increased quota

I have a Windows Phone Google Tasks app that has been growing in popularity and a couple months ago I realized I was hitting the Google Tasks API courtesy quota of 5,000 daily requests. I was getting 403 "DailyLimitExceeded". Following the advice…
0
votes
4 answers

task status back to needsAction

I use google tasks api, Patch (). This request not work: { "status": "needsAction", } But this request is ok: { "status": "needsAction", "completed": null } I use .NET and if I do so var task = new Google.Apis.Tasks.v1.Data.Task ()…
0
votes
1 answer

Combining Google App Engine cron job and task: is starting Google tasks as cron jobs possible?

I want to execute periodic background jobs on Google App Engine. Each invocation is likely to exhaust the normal time limit for normal HTTP request. I currently intend a scheme where there is an outer servlet configured as cron job. It then invokes…
Drux
  • 11,992
  • 13
  • 66
  • 116
0
votes
2 answers

Access Not Configured when trying to run tasks-android-sample

I'm trying to run the task-android-sample code that I found here: http://samples.google-api-java-client.googlecode.com/hg/tasks-android-sample/instructions.html I successfully imported it to Eclipse and added all the necessary dependencies using the…
Bartek
  • 1,327
  • 1
  • 11
  • 22
0
votes
0 answers

Google APIs - Different Versions

I am using Google Tasks API V1 dot net libraries. In the same project I also want to use Google Drive, Contacts and Calendar APIs. Drive, Contacts and Calendar APIs are V2. Now the issue I am facing is that Google Tasks .Net libraries and Google…
Allen King
  • 2,372
  • 4
  • 34
  • 52
0
votes
1 answer

How do you get tasks from all lists using the Google Tasks API?

I am currently using the Tasks API Java client in my Android app in this way: List tasks = client.tasks() .list("@default") .setFields("items(title,notes,status,due)") .execute() .getItems(); But this only returns the tasks…
Kyle
  • 1,070
  • 2
  • 13
  • 23
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
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

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

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

Get Tasks list from Google account using username and password

i am developing an desktop application in which i have to get task list from google account (as per requirement ) in analysing i didnot find any way to get it done as i didnot have much idea about Google Task Api and in the documentation provided…
Ishaan Puniani
  • 646
  • 2
  • 10
  • 23
0
votes
3 answers

Allowing others to add Google tasks

I am looking for a way for employees to send me an email or add information to a spreadsheet that will then add tasks to my task list. Ideally, the script would capture the task list, task, due date, and any notes. I have already successfully…
-1
votes
1 answer

Due Date is not updating on google

I tried to update the due date with rest API call out but is not updating on google and there is no error and exception for that too. I tried this from google developer console but it is not updating on google and there is no error too.
-1
votes
1 answer

How to handle IOException?

I am trying to sync google task in my application. I have created a class to handle the methods used to get list of task and all task related methods. These methods I want to call in UI. For testing purpose I have created a class which extends…
1 2 3 4 5 6 7
8