126 questions
0
votes
0
answers
26
views
Completed tasks are missing in Google App Scripts when showHidden is false
I'm using the Task API in Google App Scripts.
When getting a list of tasks, if I don't explicitly specify showHidden: true in the request, the completed tasks are missing.
Shouldn't showCompleted: ...
0
votes
0
answers
72
views
{"error":"Failed to authenticate with Google"} - 500 error in production only
I have the below set up to try and get users data from google calendar and tasks APIs.
Googleauth.ts
import { google } from 'googleapis';
import { NextApiRequest, NextApiResponse } from 'next';
const ...
0
votes
1
answer
88
views
Missing cloud tasks data from google cloud inventory API
I created some cloud tasks queues in the account and was trying to retrieve the data using google cloud inventory APIs but no data is being returned even though the asset is mentioned as supported in ...
1
vote
0
answers
155
views
How to embed Google Tasks in Google Chrome Sidepanel
Goal: I'm trying to create a Google Chrome Extension with the sole purpose of interacting with Google Tasks in the Google Chrome sidebar. Similar to the sidebar available within Gmail (https://mail....
1
vote
0
answers
184
views
google tasks API "Error fetching tasks: Error: Failed to fetch tasks: 401 Unauthorized"
I'm trying to build a simple tasks web app where users can login with their google accounts and access google tasks via the API. It's basically for my own use where I want to add an advanced search ...
0
votes
1
answer
106
views
React Native Google task integration
I try to receive the list of google task from react native app.
I created a new app :
npx react-native init GoogleTasksApp
Added the package :
npm install @react-native-google-signin/google-signin ...
0
votes
1
answer
1k
views
How to create Google Cloud task sheduled on time?
I need to create Google cloud task with long time of retry (a year for example), this will be simple post request to endpoint of my application.
I created task with
const task = {
.....
0
votes
1
answer
316
views
Best approach to enqueue long-running run jobs?
I have the following scenario:
Front-end -> Cloud Run Service on serverless mode.
Based on the user action, it will call a long running and parameterized process, which can take more than one hour ...
0
votes
0
answers
70
views
Retrieving extended properties from Google task
I am trying to create a Google task using the Task API, and when doing so, add an extended property or Client data. Then retrieve the property or data when I read the task later.
My json when creating ...
1
vote
1
answer
181
views
Cannot remove task using Google Apps Script
I'm using the script.google.com editor to try to delete tasks from a list as part of a bigger project however I keep getting an error which says
API call to tasks.tasks.delete failed with error: Task ...
1
vote
1
answer
120
views
I need help to solve for app script creating duplicate Google Tasks
I am new to coding and have put together some code to reference Google Sheet values to create Google Tasks. However, when I run the script it doesn't seem to check the existing task title and dueDate ...
0
votes
1
answer
289
views
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 ...
0
votes
1
answer
306
views
Google Tasks Authentication: Handle refresh tokens for Embedded Devices
I am developing for a personal embedded device (the Visionect e-ink display) that can run some node.js code to display tasks from my Google Tasks. It works fine but the token expires every so often. ...
0
votes
2
answers
433
views
Firebase tasks pass function as queue payload
I'm trying to create a generic task queue in firebase.
Following docs I'm supposed to create a new queue for each function I need but I want to create a generic queue that will accept any function.
I'...
1
vote
1
answer
250
views
Unable to add multiple tasks using google tasks api in react.js
I am using google task API for inserting tasks in google tasks & it's also working properly when I am only adding one task at a time but the problem came when I am inserting multiple tasks in one ...