Questions tagged [google-drive-picker]
67 questions
1
vote
1 answer
Keep getting "Server Rejected" when I try to upload a file to a Google Drive Folder
So my app was working (was able to upload file to a Google Drive folder). But today, it doesn't work all of a sudden. Whenever I want to upload the file, it keeps saying "server rejected" which I'm not sure why.
I use drive picker and onPickerInit,…

student009
- 51
- 1
- 1
- 7
1
vote
1 answer
Google Picker not showing after Authenticate
I'm trying to use Google Drive Picker API to browse files from my Google Drive. I'm following the "Hello World" tutorial from Google's page. For some reason, Google Picker is not popping up after I click "Authenticate" & select my…

Shihan Khan
- 2,180
- 4
- 34
- 67
0
votes
0 answers
Navigation not possible when a parent is set in Google API picker (docsView)
I'm a bit stuck with the Google API and the Drive file picker.
I want the Drive file picker to open at a given location (folder) in Drive, but users should also be able to navigate outside that location anywhere else to select a file from any other…

Pierre
- 59
- 1
- 6
0
votes
0 answers
How does google file picker work for two different access tokens belonging to same account?
I am using Google File Picker in my application to select files that needs to be shared with my application.
Say, in first attempt I pick file1 by passing access_token1 and project_id to the file picker object and in second attempt I select file2 by…

devdev
- 1
0
votes
2 answers
Google drive picker selected files are not publicly accessible
I am trying to open the selected file from google drive picker in incognito mode, but it is asking to sign in accounts. I want that file as a public file. Without logging in our account, we should access it.
My picker function in…

Sriram Sundar
- 25
- 4
0
votes
1 answer
Chrome Extension Manifest V3 not working with Google Picker API
Google Chrome Extension Manifest v3 does not allow external scripts & inline scripts:
In Manifest V3, all of your extension's logic must be included in the extension. You can no longer load and execute a remotely hosted file.
― source
This is my…

Stephcraft
- 1
- 2
0
votes
0 answers
Google API Picker Not Running Callback Apps Script Functions
I have a Google API Picker which I am using to get the ID of a file, so that data can be imported into the new workbook. This has been running successfully for about 4 weeks, but this week it has stopped running the callback functions, which saves…

WCrawford
- 1
- 1
0
votes
0 answers
Google drive picker API "this.qi is not a function"
I am trying to load the google drive picker API in my project.
This source code is taken from Google Picker Code Sample
This is my source code.
gapiLoaded() {
window['gapi'].load('client:picker', this.intializePicker);
}
async…

Sriram Sundar
- 25
- 4
0
votes
0 answers
Open Google Picker Views with already Files Selected (Angular)
I'd like to open the google picker in the angular and build a view with some files selected with the files that i already have the data stored.
Example:
const view = new google.picker.View(google.picker.ViewId.DOCS);
…
0
votes
1 answer
How to recieve file object from google drive in vuejs?
I want to pick files from google drive as a file object. I am working in vuejs and hence used the vue-google-picker. Google picker is actually returning URL, that I am converting to a file. My code to convert to file:
async convertToFile(docs) {…

Maha Waqar
- 585
- 1
- 10
- 24
0
votes
1 answer
Google File Picker for Videos only
I am trying to integrate a Google File Picker where users can click a button from my site and then open the Google File Picker modal that allows them to choose videos only from their Google Drive. This section of the site is for recording videos and…

morsss
- 1
0
votes
1 answer
Google Picker - Show files created by me (for Shared Drives)
So I've made a time a go a Google Picker for my team which worked great, with DocsView.setOwnedByMe set to true. I needed a picker to show only PDFs created for each user and this was fine, whenever I wasn't using Shared Drives (ex Team Drives). We…

Nicolás Paulino
- 206
- 2
- 4
0
votes
0 answers
Load files from Drive picker and then process
The code is modified from: https://fengyuanchen.github.io/compressorjs/
I am using a drive picker to load the file and then compress it, But the below code that I have tried cannot achieve the file load from drive. The code preloads the file. How…

Code Guy
- 3,059
- 2
- 30
- 74
0
votes
0 answers
google drive picker and DriveApp is not defined error
This is my google drive file choose api code.
when I tried to run this code showing me error like DriveApp is not defined.
In this code I am getting error on that particular part:
function getOAuthToken() {
DriveApp.getRootFolder();
…

PHioNiX
- 67
- 8
0
votes
1 answer
how to retrieve text from google drive documents
I am using react-google-drive-picker to select a file from GDrive in my NextJS app. Once I have picked a file and retrieved the meta information, what is the suggested way to download or just retrieve the file content? What API is suggested to use…

user299791
- 2,021
- 3
- 31
- 57