All Questions
Tagged with google-oauth google-drive-api
766
questions
0
votes
0
answers
37
views
The Google Marketplace app isn’t showing up in the Drive "Open With" section
We’re working to publish an app to the Google Marketplace for our Drive API, but it's being rejected by Google's review team, who say they can't see the app in the "Open With" section.
...
0
votes
0
answers
110
views
OAuth2 google drive AccesToken refresh using Google Credential Manager + AuthorizationClient
My question: How can I request a OAuth2 credential object to access the Google Drive API, that is automatically refresh after the accessToken is expired?
What I did:
I followed the latest suggestions ...
0
votes
0
answers
37
views
AWS SAM Lambda - Google Drive service account issue
I have been using an AWS SAM Lambda for 6x months now to trigger a file create method to a Company Google Drive shared folder with the service account. As of Friday the 27th of Sept 2024 this create ...
0
votes
0
answers
38
views
Access to google drive not being granted under a certain scenario (python api)
I am using oauth google api to authenticate a user and the scope supplied in the request is:
"openid email profile https://www.googleapis.com/auth/drive".
The call is successful and results ...
0
votes
1
answer
83
views
Download Google Drive file with PHP Symfony
I have already tinkered in several docs and forums and I know that the subject has already been discussed but none of the solutions proposed have helped me resolve my problem.
Maybe it's the config ...
0
votes
0
answers
58
views
How to check file picked from drive picker is public or private
Problem Statement -
I have to open a google drive picker to let user select the file, then I am storing only embed link at database.
At view I am showing user the embedded view of that file image, ...
1
vote
0
answers
72
views
Accessing the files in a folder of google drive using google oauth
I am trying to create a web application using FastAPI for backend and ReactJS for frontend. I need the users to give me a link of a folder in their google drive in the frontend. I then need to access ...
0
votes
0
answers
75
views
Google Drive Service Account gets googleapiclient.errors.HttpError: 401 "Request is missing required authentication credential" when authenticating
I am writing a small app to upload files to a shared Google Drive using a service account (JSON file credential, no user impersonation or consent, service account has been granted permission directly)...
0
votes
2
answers
474
views
Service Account authentication credentials for Google Drive not working
I create credentials for google service account from json file as follow:
using var stream = new FileStream(credentialFileName, FileMode.Open, FileAccess.Read);
var credentials = ...
0
votes
1
answer
136
views
How to fix CVE-2020-7692 in com.google.apis:google-api-services-drive:v2-rev362-1.25.0
I wanted to fix CVE-2020-7692 reported in
com.google.apis:google-api-services-drive:v2-rev362-1.25.0
this CVE is coming from com.google.oauth-client_google-oauth-client.
Would it be fine if i only ...
0
votes
0
answers
28
views
"authClient is not a function" in Electron app
I'm relatively new to Electron, and I've been trying to get over this error for the past 5 days. I've tried many of the other posts's answers, but I've had no luck
From the Dev Tools window, I get the ...
-1
votes
1
answer
128
views
Google Drive API - use without json file
I'm working on C# program that will connect to my Google Drive. it's work fine with json file, and enabling the API, but I want that everyone will connect to their Drive. there is a way to do that ...
0
votes
1
answer
176
views
google OAuth consent screen - Google has not verify this app - "something went wrong"
I'm fetching data from google drive ,first I'm using restricted scope in testing but it give me error that google has not verified this app
Future _signinUser() async {
final googleSignIn = ...
0
votes
0
answers
92
views
Download Google Drive csv file via Javascript with Google Auth popup providing token?
I want to have some local javascript code hit the google drive api and download a csv of a Google sheet for a simple automation tool.
I want a quick OAuth popup to ask the user to accept and then fire ...
0
votes
1
answer
290
views
Google Drive - Authenticating with JSONClient using Node
I have succesfully authenticated using OAuth2 and now have an auth token.
Loading this token returns me a JSONClient:
const authClient = google.auth.fromJSON(credentials);
Now trying to use this ...