vue-google-api
vue-google-api copied to clipboard
Changes the `signOut` method to wait for [GoogleAuth.disconnect](https://developers.google.com/identity/sign-in/web/reference#googleauthdisconnect) to resolve before resolving itself. This fixes the bug where calling `isSignedIn` immediately after awaiting `signOut` would return true.
Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4. Changelog Sourced from websocket-extensions's changelog. 0.1.4 / 2020-06-02 Remove a ReDoS vulnerability in the header parser (CVE-2020-7662, reported by Robert McLaughlin) Change license from...
Updated the getAuthObject method for fetch the current user's auth session data
This e.g. gives devs the possibility to set things like the "prompt" argument for gapi auth
Bumps [serialize-javascript](https://github.com/yahoo/serialize-javascript) from 1.7.0 to 2.1.2. Release notes Sourced from serialize-javascript's releases. v2.1.2 Ignore .nyc_output (@styfle, #64) v2.1.1 Fix regular expressions Cross-Site Scripting (XSS) vulnerability (see security advisory) Migrate to...
Bumps [kind-of](https://github.com/jonschlinkert/kind-of) from 3.2.2 to 6.0.3. Changelog Sourced from kind-of's changelog. [6.0.3] - 2020-01-16 Merge pull request #31 for issue #30 [6.0.0] - 2017-10-13 refactor code to be more performant...
Bumps [acorn](https://github.com/acornjs/acorn) from 3.3.0 to 7.1.1. Commits 6d19489 Mark release 7.1.1 793c0e5 More rigorously check surrogate pairs in regexp validator b5c1787 Fix incorrect comment in regexp parser 12ae8fe Parameterize dummy...
Bumps [minimist](https://github.com/substack/minimist) from 0.0.8 to 1.2.5. Commits aeb3e27 1.2.5 278677b 1.2.4 4cf1354 security notice 1043d21 additional test for constructor prototype pollution 6457d74 1.2.3 38a4d1c even more aggressive checks for protocol...
I'm using version 0.2.0 of the library and attempting to list the files in a specific folder on Google Drive. I used this code: `this.$gapi.request({ path: "https://www.googleapis.com/drive/v3/files", params: { pageSize:...
```js this.$gapi.signOut() .then(() => { this.$gapi.isSignedIn().then((result) => console.debug(result)); }); ``` result: `true` This is breaking my program flow because the login page (which I redirect to immediately after signing out)...