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
2 answers

Limit parameter on google API response

I am looking for limit parameter by which I can limit the the data that I am get. Like I want to get the list of tasks. By which I can get the list of…
Mahendra Garg
  • 516
  • 1
  • 9
  • 27
0
votes
1 answer

Android NPE when trying to insert data in SQLite database after user input

I have an fragment that inflates a layout of three EditText views. After collecting the user's input I want to save that data to my SQLite database. The Save button is located on the options menu and is inflated by the same Activity that calls the…
idclark
  • 948
  • 1
  • 8
  • 27
0
votes
1 answer

403 Error on Google Task API

I am trying to make a REST call to the Google Tasks API .But it alway return the following { "error": { "errors": [ { "domain": "usageLimits", "reason": "accessNotConfigured", "message": "Access Not Configured. The API (Tasks…
BellRinging
  • 371
  • 2
  • 17
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
0 answers

Error 403 trying to get a list of messages (Gmail) and tasks (Google Tasks) with Apis

I am working with VB.Net, I followed the instructions to get a list of messages (gmail api v1) and tasks (tasks api v1) from Google:…
Alan Alvarez
  • 646
  • 2
  • 11
  • 32
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
0 answers

List, Add, delete tasks with Google Tasks Api and VB Net (Not C#)

Im trying to do a form with buttons, listview (or datagridview) and some textbox to work with tasks with Google Tasks Api but i cant find Visual Basic examples. Can you show me a example of how to add a new task by pushing a button after fill some…
user3822492
  • 145
  • 1
  • 11
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
1 answer

Tasks API 403 Access Forbidden

03-30 15:20:53.422: W/System.err(25384): "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project." I get this error when trying to do a GET on Taskslist. GoogleAccountCredential credential…
0
votes
1 answer

Google Tasks API: Uncaught exception 'Google_ServiceException'

I'm getting the following message: 'Uncaught exception 'Google_ServiceException' with message 'Error calling GET https://www.googleapis.com/tasks/v1/users/@me/lists: (403) Insufficient Permission''. I'm using OAuth 2.0 and it works fine with the…
0
votes
1 answer

Create tasks to other gmail acount using google task api

I am using google task api, it works fine with my account associated to my device, but I can create tasks ONLY on this account, so how can I create tasks for other Gmail accounts that I know the login and password using my configured device…
Wajdi Hh
  • 785
  • 3
  • 9
0
votes
2 answers

Google Tasks API: How can I find the TaskList of a Task?

Google Tasks API: I have the ID of a Task. The user changes the TaskList of the Task. How can I find the new TaskList? Fetching all TaskLists and then going through all the tasks takes ages. Is there no other way?
Christopher Masser
  • 809
  • 13
  • 25
0
votes
1 answer

Pass connection object to other activity - Google Tasks API

I seem to have struck a wall with this problem of mine. Basically i'm working on an app which syncs your google tasks with the Google Tasks API. Everything is going great so far in my first activity. But now I want to create a new activity to show…
jbrulmans
  • 975
  • 1
  • 11
  • 32
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

GAE collection task data support

I have GAE application. I have Emails to the NoSQL and their refresh tokens of google Drive. I have Cron job which fires Push queue for each PDF in order to download this. No I want to send email to each user about their PDF data. I cant send email…