Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
vue-google-picker
Advanced tools
Vue.js button to open the dialog of files from Google Drive using Google Picker API
Vue.js button to open the dialog of files from Google Drive using Google Picker API
npm install vue-google-picker --save-dev
Include the Google API Loader in your static file
<script type="text/javascript" src="https://apis.google.com/js/api.js"></script>
config
- Keys and Credentials of Google APIpicked
- When a file is picked. Return an object of selected filesExample:
<template>
<file-picker-button :config="gConfig" @picked="showDetails">
Open Google Drive Dialog
</file-picker-button>
</template>
<script>
import FilePickerButton from '../../vue-google-picker'
export default {
components: {
FilePickerButton
},
created() {
this.gConfig = {
// The Browser API key obtained from the Google API Console.
developerKey: 'xxxxxxxYYYYYYYY-12345678',
// The Client ID obtained from the Google API Console. Replace with your own Client ID.
clientId: '1234567890-abcdefghijklmnopqrstuvwxyz.apps.googleusercontent.com',
// Scope to use to access user's drive.
scope: 'https://www.googleapis.com/auth/drive.file'
}
},
methods: {
showDetails (data) {
if(data.picked === 'picked') {
console.log(data.docs)
}
}
}
}
</script>
All the information can be found on official Google Picker DOCS (https://developers.google.com/picker/docs/)
FAQs
Vue.js button to open the dialog of files from Google Drive using Google Picker API
The npm package vue-google-picker receives a total of 104 weekly downloads. As such, vue-google-picker popularity was classified as not popular.
We found that vue-google-picker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.