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
0
votes
1 answer

Is it possible to chose not user, but application data using Google Picker Api?

I need to let user access documents stored on my account(app is registered on it) Drive. I know how to access user Drive data with Picker API, but is it possible to access Application data using Picker API? The point is - I have website, and I want…
Oleg Kuts
  • 769
  • 1
  • 13
  • 26
0
votes
1 answer

Google Drive API File Picker: File select of “doc” extension return empty content

I am trying to download the file through google picker the pdf and docx extension files are getting downloaded perfectly fine. But the issue I am facing is that while selecting the doc extension file the object return file size as zero. In other…
0
votes
0 answers

Is there a way to use a Google Picker in Chrome Apps?

I write a Chrome App and I'd like to use a Google Picker API. It seems that this API is available for web applications only. Is there some way to use it or I need to implement custom picker using Google Drive API?
0
votes
1 answer

Google Picker shows up blank when used in Google Sites

To all Google Apps experts - please help me solve this. I'm rather stuck and I've not found any explanation yet on why this problem exists at all. I've included a live example to demonstrate the problem. The problem may be view at this location ...…
0
votes
0 answers

Include Google Drive Picker in chrome extension

I am trying to include a Google Drive Picker in a chrome extension. I followed this guide to build the chromes extension: https://developer.chrome.com/extensions/getstarted And this guide to build the…
0
votes
1 answer

Google drive refetch/refresh the previously fetched file

we are using google picker to fetch the file in our application. Previously it was one time thing, but we noticed that because we don't allow data manipulation on our app, user need to do the changes on the drive and again do the upload/fetch…
Mutant
  • 3,663
  • 4
  • 33
  • 53
0
votes
1 answer

Google Picker using Scala.js

I'd like to use Google Picker in my Scala.js app. I need to convert this example somehow. There are two main questions: The first, how can I load and use https://apis.google.com/js/api.js in my Scala.js code to use gapi object? gapi.load('auth',…
Alex Karasev
  • 1,108
  • 2
  • 13
  • 24
0
votes
1 answer

Struggling to set the 1st viewing folder in picker

I am struggling with how to get the ID from the google script sheet back into the HTML sheet. I am hoping to use the parentfolder ID of the activespreadsheet to be the folder that opens with the picker. The spreadsheet will only be in one folder…
Glib
  • 242
  • 2
  • 4
  • 16
0
votes
1 answer

how to authorize google picker with oauth2 token from app engine

I am developing an App Engine Java program that uses OAuth2 at login. In other words, user must give approval before using the app. I now want to integrate Google Picker functionality without having to authenticate (request permission again) on the…
0
votes
1 answer

Gdrive file get JS doesn't work in ie

I using this code to retrive file from google drive picker. But on IE browser it return error on call. function downloadFile(file, callback) { if (file.downloadUrl) { var accessToken = gapi.auth.getToken().access_token; var xhr = new…
0
votes
0 answers

Cannot download proper file from google server to my server

I am trying to download a file from google server to my server. But the file downloaded is corrupted. While googling I found that the responce is a raw file. I followed the coding listed below: $getUrl = 'https://www.googleapis.com/drive/v2/files/'…
0
votes
1 answer

Download Google Drive file using javascript

I want to download Google Drive file using javascript to my server when i click on Google Drive picker but cannot get the file downloaded. I have been searching if for 4 days but the issue is same below is the code that i am using. function…
user3653474
  • 3,393
  • 6
  • 49
  • 135
0
votes
0 answers

Download file to server directly from Google Drive in php

I want to transfer file from Google Drive to my Server Directly when any user selects a file from Google Drive Picker. I am using following code but the file does not get downloaded in my particular folder when using following code.. Callback…
user3653474
  • 3,393
  • 6
  • 49
  • 135
0
votes
2 answers

How to copy file from google drive to another server using php

I want to copy file from google drive to another server using php. I have used google drive picker and when user clicks on any file I used to get download url, I was thinking that it can be done through copy function, but it didn't work. Any…
user3653474
  • 3,393
  • 6
  • 49
  • 135
0
votes
1 answer

How to make Google Picker iFrame responsive?

Following this link: http://stuff.dan.cx/js/filepicker/google/ a demo of a google picker, one can see that the picker iframe here has a minimum size 566 * 350, even when the browser is resized to dimensions even smaller. I want this iframe to be…
Comm Cinn
  • 1
  • 1