Questions tagged [google-picker]

Google Picker is a "File Open" dialog for the information stored in Google servers.

Google Picker is a "File Open" dialog for the information stored in Google servers.

With Google Picker, users can select photos, videos, maps, and documents stored in Google servers. The selection is passed back to the web page or web application for further use.

Using the Picker is an alternative to integration with the Drive UI, for applications that use the limited permission drive.file OAuth scope and need to access explicitly-selected, existing files in users' Google Drive.

enter image description here

Related Information:

316 questions
6
votes
0 answers

Google Picker API with a valid access_token asks for sign in on first use

Firstly, I have reviewed multiple SO questions relating to similar issues and the Google Picker API docs but cannot find a solution. Links at the bottom of this post. Goal After using the Google auth2 JavaScript library to complete a ux_mode='popup'…
arkore
  • 105
  • 12
6
votes
2 answers

Select Folder with google Picker

I'm using google the plugin Picker for Google Drive. My idea is select only the folders and get its ID. Currently not let me select them,now only enter into that directory. I am using this code: function MenuCtrl($scope, $location, appId) { …
user2606850
  • 485
  • 4
  • 12
5
votes
2 answers

How to integrate Google Picker with new Google Identity Services JavaScript library

Because of the known issue described in here (https://developers.google.com/identity/sign-in/web/troubleshooting) I want to update my application to be using the new gsi sign-in that uses less cookies than the previous versions and therefore might…
5
votes
2 answers

3rd-party cookies and the Google Picker

The Google Picker API currently requires the use of third-party cookies. Unfortunately, browsers have begun to block third-party cookies by default. Are there plans for the Google API script (https://apis.google.com/js/api.js) to not required the…
BMarshall
  • 51
  • 1
5
votes
3 answers

Angular 6 - Google Picker API Popup

Able to access the Google Picker only once in a while. Google Picker Popup doesn't opens every time when I open the application. I'm implementing Google Picker API in Angular 6. I kept separate file for the logic behind connecting the Google API in…
Arun S
  • 51
  • 1
  • 5
5
votes
1 answer

Cannot call Google Script API Functions from Web App (TypeError: Cannot read property 'run' of undefined)

I had a google apps script working fine for months and it suddenly stopped working. I'm wondering if Google deprecated some part of my code or something. This is the link to the file: Click here to view Google Spreadsheet File The google script code…
5
votes
1 answer

Running Google Picker with offline access oAuth token

What I am doing: I am integrating Google Picker on my page. This will allow users to select files from their Google Drive to be used in the web app. In the app, people in a group share a common google drive (i.e. they all can select files from…
Jehanzeb.Malik
  • 3,332
  • 4
  • 25
  • 41
5
votes
2 answers

Google Drive API Application data accessing credentials from Web browser(Javascript)

I'm trying to obtain credentials from Google Console to access my Application Drive data through Web browser(Javascript) option (In order to use Picker API latter on). But when I select option Application data(Access data belonging to your own…
Oleg Kuts
  • 769
  • 1
  • 13
  • 26
5
votes
4 answers

How to make the file shareable using google drive api

I am trying to get the file using google drive api, by default the file is not shareable i want to make it shareable. Here is my code:-
5
votes
0 answers

Google Picker DocsUploadView.setIncludeFolders(true) sort order?

I'm using Google Picker to upload files to my Drive and for convenience I'm also using the DocsUploadView.setIncludeFolders(true) option. This all works great except in the target folder picker combo box widget all the folders are in some random…
brock
  • 439
  • 1
  • 5
  • 17
5
votes
1 answer

Use Google Picker without logging in with Google account (with OAuth)

Is it possible to present the Google Picker to a user who isn't logged in with her Google account? I would like to let the user select files from a shared Google Drive of the Google account of my website. I can access these files with OAuth on the…
Korneel
  • 1,487
  • 14
  • 40
5
votes
2 answers

Using Google Picker to upload files to Google Drive and place in specific folder

I am attempting to use Google Picker to upload files to a specific folder in Google Drive. Everything works fine when I am just uploading to the root folder, but even after specifying the parent folder as shown in my code below, the files still go…
user1501783
  • 533
  • 2
  • 9
  • 20
4
votes
1 answer

Google Picker - Alert - You are about to send 1 item to localhost. Would you like to continue?

I'm using Google Picker Api. Google Picker is showing properly but when I select a file (selecting a file and clicking the Select button or double clicking a file), I get this alert: An embedded page at docs.google.com says You are about to send 1…
mrkvn
  • 86
  • 1
  • 5
4
votes
1 answer

Unable to get image thumbnails when using drive.file OAuth scope with Google file picker

I am implementing a Google File Picker, using the drive.file OAuth scope (in order to avoid usage of sensitive/restricted scopes). The picker works as expected and we are able to receive the file ID for the selected file and download the contents…
mhaldeman
  • 41
  • 1
4
votes
0 answers

Is it possible to open google picker with access token which is fetched from server side Oauth2?

I have integrated my Google drive using Oauth2 in server side and stored credentials like access token and refresh token in data base. const clientId = `${process.env.GOOGLE_DRIVE_CLIENT_ID}`; const clientSecret =…
1
2
3
21 22