vue-google-auth
vue-google-auth copied to clipboard
[DEPRECATED] Handling Google sign-in and sign-out for Vue.js applications
As a newbie in VueJs and Google API, what should be the content on our proxy api on `/auth/google` ? (used on the `onSignInSuccess`) I other words, how do we...
I have imported the 3 lines into main.js > import GoogleAuth from 'vue-google-auth' > Vue.use(GoogleAuth, { client_id: 'myjibberish-xfewerwe.apps.googleusercontent.com' }) > Vue.googleAuth().load() And when I made a component based on `sample.html`...
Solution that helps me https://stackoverflow.com/questions/35215360/getting-error-object-doesnt-support-property-or-method-assign/39021339#39021339
Since the token is only valid for 1 hour it would be nice to include an option or perhaps by default reload expired tokens in exchange for fresh ones. I'm...