Google Tasks API allow developers to search, read and update Tasks resources stored by Google Tasks service.
Questions tagged [google-tasks]
120 questions
1
vote
0 answers
Hard limit of 10 running tasks per instance in AppEngine queue
I have a GAE project, connected with an App Engine Queue (formerly 'push queue'), which should handle multiple tasks at once (target would be ~30 tasks per running instance). Somehow, I'm facing a hard limit of 10 * [COUNT OF RUNNING INSTANCES]…

winterstefan
- 66
- 3
1
vote
1 answer
Google Task API
I am going to fetch Google Tasks via API on the server without using the browser but when I am calling the API, it gives me redirect link to authenticate the application as in the documentation here.
I don't want the redirection to browser, verify…

engrhussainahmad
- 1,008
- 10
- 19
1
vote
1 answer
How to add a new task in google task api
I'm trying to figure out how to add a task using the Google tasks API. The docs leave a lot to investigate and I seen to be stuck. This is my code:
// Get the API client and construct the service object.
$client = getClient();
$service = new…

micksp
- 123
- 2
- 15
1
vote
1 answer
How to enable logging for Google Task Queue?
I currently have a task queue with tasks running. This is what my dashboard looks like:
When I click on 'View' (under logs on the far right), it takes me to a page that looks like this:
I am certain that there should be some logs, considering all…

Preethi Vaidyanathan
- 1,203
- 1
- 12
- 32
1
vote
1 answer
Google Task API No More Shows Tasks created via API on Calendar
When creating tasks via API those tasks do not appear in calendar, but are only visible in sidebar section of tabs.
Just few days ago all seems to be working correctly, so this could be some bug or their sudenn change. How to find that? How to…

Alexa
- 418
- 4
- 12
1
vote
1 answer
How to get google oauth refresh token in the lambda function by configuring the account linking section in alexa developer console?
I have referred this link https://medium.com/coinmonks/link-your-amazon-alexa-skill-with-a-google-api-within-5-minutes-7e488dc43168 and used same configuration as stated.
I am able to get access token in the lambda function var accesstoken…

Raghavendra
- 11
- 1
1
vote
1 answer
Google API Authentication Tasks API
I want to create a Lambda function that uses the Google Tasks API to add tasks every evening at a certain time.
I am unsure of how to authenticate with my account and be able to store access tokens / credentials securely in my lambda environment…

9er
- 1,604
- 3
- 20
- 37
1
vote
2 answers
insert task in task list google-task-api
I am really confused. I am testing google task api, I can access my tasks but when I am tiring to insert a task it gives an error. in documentation this code is available, that dose not work because there is no Fetch function available.
Task task =…

ahmadabdullah247
- 341
- 1
- 4
- 16
1
vote
1 answer
Google task integration in android application
I am trying to integrate google task in android to store and retrieve task from google task, it is my first experience working on google task does any one of you have integrated google task or know way to do it ...

Zubair Akber
- 2,760
- 13
- 30
1
vote
0 answers
Google form triggers Google tasks
I would like to have a specific field in a response to a Google Form trigger a task creation. I am using a Google form to record when I am paid for a tutoring session. If someone says they would like a receipt after paying me, I would like to have a…

Donovan Fox
- 11
- 2
1
vote
1 answer
Google Tasks - insert task from webpage
I'm trying to add a new task from my website to the Google Tasks. I checked the Google Tasks Api docs, and this is the code what I figured out:

Mandino
- 13
- 6
1
vote
1 answer
Adding tasks from script
I'm not able to create tasks from script.
Neither of the below are working.
var newlist = Tasks.newTaskList().setTitle("This tasklist is created from script");
var newTask = Tasks.newTask().setTitle("This task has been created from script");
I'm new…

Dawn
- 13
- 3
1
vote
1 answer
How to manipulate nodes added by Google-Tasks?
I'm currently trying to change style elements for this Google-tasks gadget:
https://mail.google.com/tasks/ig
using a chrome content script.
In this example, I'm removing the toolbar at the bottom. Because Google is generating the HTML with…

user3422232
- 35
- 4
1
vote
2 answers
What's the best workflow to authenticate a Google Account in my Android App?
I'm trying to follow this this example: http://code.google.com/p/google-api-java-client/source/browse/tasks-android-sample/src/main/java/com/google/api/services/samples/tasks/android/TasksSample.java?repo=samples.
My code is a bit bad-written, but…

Xisberto
- 125
- 3
- 12
0
votes
1 answer
Using Google Tasks
I am trying to create a task in my calendar from sheets. I have turned on advanced services and I am able to create task. The problem is more with the way I am trying to enter the fields or app scripts interface is not recognizing the JSON…

Rob
- 11
- 1