Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
138 views

Problem: I am facing this error- googleapiclient.errors.HttpError: <HttpError 403 when requesting https://docs.googleapis.com/v1/documents?alt=json returned "The caller does not have ...
Hetarth Jain's user avatar
0 votes
1 answer
54 views

I’m using the Python client library (google-api-python-client) to call captions.update, but I keep getting a 403 forbidden even though I’ve granted all the obvious scopes. I’d appreciate any insight ...
Kenji Ishikawa's user avatar
0 votes
0 answers
115 views

Problem: Even after requesting “offline” access and saving the refresh token, the refresh token stops working after 1 day or sometimes just a few hours. Actual error: Reauthentication is needed. ...
Rohan Karan's user avatar
0 votes
2 answers
88 views

I am using a python script to import calendar entries from one tool to google calendar. I have no problems with events that repeat weekly, but the monthly repeating events get created incorrectly. I ...
Beth ChaosDragon ChaosDragon's user avatar
0 votes
0 answers
129 views

An issue appeared today on my app where when users try to link their youtube brand accounts through the google oauth flow, they get stuck after agreeing to the terms and conditions. They are not ...
musa khawaja's user avatar
2 votes
1 answer
192 views

I have project that involves taking a picture every one hour with a Raspberry and saving it to Google Drive. I'm using the google-api-python-client to connect to a Google Drive and apscheduler to ...
Pablo Rios's user avatar
0 votes
0 answers
30 views

I am using Firebase's Firestore and have built a backend API server using FastAPI. I am also using Firebase's login feature with the Pyrebase4 library (referenced from: https://github.com/nhorvath/...
maverick kang's user avatar
1 vote
1 answer
111 views

Using the Python example taken directly from the "Google Sheets API documentation > Create a spreadsheet" and changing only the credentials, I am experiencing poor performance. It's ...
Stokedout's user avatar
  • 11.1k
0 votes
0 answers
211 views

I am creating a Python script to generate a token from the user and store the generated token. While testing locally, everything worked fine when I used http://localhost:8000/ as the redirect URI in ...
Saurav's user avatar
  • 1
0 votes
1 answer
69 views

My Gmail reached the 15 GB limit, so I archived old emails with Thunderbird and I want to delete all the emails that are older than two weeks. Using the GUI is cumbersome because it seems like I can ...
Paul Lewallen's user avatar
0 votes
1 answer
90 views

I'm trying to create some automation to add users to a Google Play Developer account using the API. I wrote a python script using the google-api-python-client library. The service account I'm using ...
user28820123's user avatar
2 votes
1 answer
193 views

I am trying to extract and download reports from DV360 API using python. I have gone through the documentation https://developers.google.com/bid-manager/guides/get-started/send-request ,but not able ...
Bits's user avatar
  • 286
1 vote
1 answer
113 views

I need to be able to get Google site reviews by their API do put them in our data warehouse. I tried with the following code: from googleapiclient.discovery import build API_KEY = '...
André Pletschette's user avatar
3 votes
1 answer
6k views

I have a URL to a public google doc which is published (It says published using Google Docs at the top). It has a URL in the form of https://docs.google.com/document/d/e/<Some long random string, I ...
Rbe's user avatar
  • 31
1 vote
1 answer
68 views

I’m having trouble getting this to work. Essentially I want a user to input a keyword and then get a question and answer pair as a return. The first, second, and third columns in the the spreadsheet ...
Sophia Campione's user avatar
1 vote
0 answers
79 views

I'm working with the mybusinessbusinessinformation API, attempting to get a list of locations. The documentation for this API is here. I have already taken the following steps: Filled out the form ...
MisterJT's user avatar
  • 432
0 votes
1 answer
351 views

I'm working on a project and must consume some messages from my GCP Pubsub subscription. Locally I can consume messages normally. But when I release the changes to a container in the cloud (something ...
juan jose Palacio's user avatar
2 votes
1 answer
488 views

Does anyone know how to use the GoggleDrive API to get files that are in the Shared Drives category. I have a API call that I can use to get metadata via FileID which works for files that are shared ...
Todd B's user avatar
  • 115
0 votes
0 answers
93 views

I am developing an application with Python which consumes resources from Google Cloud. I would like to automate the authentication process (right now what I have is the authentication via an API Key ...
Marta Fernandez's user avatar
1 vote
1 answer
130 views

from google.oauth2.service_account import Credentials from googleapiclient.discovery import build import random import msvcrt import json credentials_doc = 'service_account.json' ...
isil's user avatar
  • 31
0 votes
1 answer
113 views

We are experiencing timeout issue when connecting to Google Sheets, specifically using googleapiclient. The code has been working, but after some new deployment, we start getting this error. Even we ...
Dyson's user avatar
  • 165
1 vote
1 answer
201 views

I am using Colab in Python to get the folder ID and folder name inside a particular folder called myProject from Google Drive. Folder structure is like this: Google Drive (When I open drive.google.com ...
Sanjana Nair's user avatar
  • 2,795
1 vote
1 answer
233 views

I am trying to use the API Key and it does take the picture on the Raspi but then gets stuck trying to send it to the Drive and I am unsure why. Note: I took out the key and ID for privacy but I do ...
nkk's user avatar
  • 11
0 votes
1 answer
83 views

i am using service account auth2client.service_account and googleapiclient to connect to google calendars and create events, my issue is my events are creating and also confirmed using list events, ...
Nabeel Ayub's user avatar
2 votes
2 answers
8k views

I have a very simply program that I copied from Google's workspaces, the import statements are as follows import os.path from google.auth.transport.requests import Request from google.oauth2....
user avatar

1
2 3 4 5
34