electron-google-oauth2 icon indicating copy to clipboard operation
electron-google-oauth2 copied to clipboard

A Google OAuth2 module for your Electron app

Results 11 electron-google-oauth2 issues
Sort by recently updated
recently updated
newest added

Bumps [electron](https://github.com/electron/electron) from 14.2.9 to 22.3.25. Release notes Sourced from electron's releases. electron v22.3.25 Release Notes for v22.3.25 Other Changes Security: backported fix for CVE-2023-5217. #40026 electron v22.3.24 Release Notes...

dependencies

After sign in, the browser window should redirect to the local server and should be closed automatically.

See [https://github.com/googleapis/google-auth-library-nodejs/issues/1384](url) To reproduce the issue `npm install` and see audit results. Dependencies trace back to this package.

``` if (credentials) { myApiOauth.setTokens({ refresh_token: credentials.refresh_token }); } else { myApiOauth.openAuthWindowAndGetTokens() .then(token => { } ``` I still don't 100% understand what is happening here... I'm used to using...

Hi, I found that if I'm going to refresh the user's token, I need to send a POST request, I didn't find that API in document, so currently I implemented...

When I package the app for usage in Mac App Store I get the following error when trying to do the Google OAuth process. I think the error comes from...

Is there any non-hacky way to change the successRedirectURL to a custom one or just let it close the window? Something like: `myApiOauth.openAuthWindowAndGetToken(successRedirectURL="https://localhost/?loginresult=done")`

This happens at the line: `import ElectronGoogleOAuth2 from '@getstation/electron-google-oauth2'` and I do not really understands what it wants.

We're using this library, and Dependabot just alerted us to a problem with it: ``` Dependabot cannot update node-forge to a non-vulnerable version The latest possible version that can be...

It's a pain to generate one API key and client ID for non-developer. So if we use electron to build one client to access google service, seems like this first...