How to fix Google API 'invalid_grant' error

I am using Google API with Drive API and Drive Activity API to handle and make changes to files. Everything seems to work fine, but at random day of the week I receive an invalid_grant error. I have read about timezone solutions and other 8-9 issues, but I think this is something else. This is… Read More How to fix Google API 'invalid_grant' error

Express GET returning an empty bracket

I’m trying to do an API using the Google Sheets API. But in my application I always get an empty array as response. These are my codes: index.routes.js import { Router } from "express"; const router = Router(); const funciones = require("../functions/index.functions.js"); router.get("/", (req, res) => { res.render("index.hbs"); }); router.post("/trabajador/agregar", (req, res) => { console.log(req.body);… Read More Express GET returning an empty bracket