GooglePicker for Vaadin
Google Picker integration for Vaadin. Choose files from Google Drive.
Google Picker is a "File Open" dialog for the information stored in Google servers.
With Google Picker, your users can select photos, videos, maps, and documents stored in Google servers. The selection is passed back to your web page or web application for further use.
Use Google Picker to let users:
- Access their files stored across Google services.
- Upload new files to Google, which they can use in your application.
- Select any image or video from the Internet, which they can use in your application.
Sample code
picker = new GooglePicker(API_KEY, CLIENT_ID); picker.addSelectionListener(new GooglePicker.SelectionListener() { @Override public void documentSelected(GooglePicker.Document document) { String name = document.getName(); // Do something with the chosen document } }); addExtension(picker); // Open selection dialog for spreadseets picker.pickDocument(GooglePicker.Type.SPREADSHEETS);
Links
Compatibility
Was this helpful? Need more help?
Leave a comment or a question below. You can also join
the chat on Discord or
ask questions on StackOverflow.
Version
Bugfixes
- Released
- 2015-01-26
- Maturity
- EXPERIMENTAL
- License
- Apache License 2.0
Compatibility
- Framework
- Vaadin 7.1+
- Browser
- Browser Independent
GooglePicker for Vaadin - Vaadin Add-on Directory
Google Picker integration for Vaadin. Choose files from Google Drive.Google Picker is a "File Open" dialog for the information stored in Google servers.
With Google Picker, your users can select photos, videos, maps, and documents stored in Google servers. The selection is passed back to your web page or web application for further use.
Use Google Picker to let users:
* Access their files stored across Google services.
* Upload new files to Google, which they can use in your application.
* Select any image or video from the Internet, which they can use in your application.