react-oauth icon indicating copy to clipboard operation
react-oauth copied to clipboard

Google OAuth2 using the new Google Identity Services SDK for React 🚀

Results 99 react-oauth issues
Sort by recently updated
recently updated
newest added

I tried out your library to authenticate with and I noticed in the console that there is a failed request to: `https://play.google.com/log?format=json&hasfast=true&authuser=0` getting back a 401 I am wondering firstly...

I'm having an issue while logging in using Authorization code flow My login configurations are ``` const googleLogin = useGoogleLogin({ flow: 'auth-code', scope: 'profile email https://www.googleapis.com/auth/drive', onSuccess: onSuccess, onError: onFailure,...

(btw not sure if it's intentional to have 2 README files, I never used turporepo :))

- #### After using the package, I faced a lot of problems in placement of `GoogleOAuthProvider`, so I updated that part, so that it can be easily understandable. - ####...

I needed **an optional onClick prop** for the GoogleLogin component in order to do some ui actions (like cleaning the error message on the screen etc.). For this reason, I...

### Summary Using this library to wire up my custom google login button. When flow is `auth-code` and I invoke the `login` function returned by `useGoogleLogin` before the google client...

Hello, thanks for this package. Is it possible to get credientialResponse with custom buttons ? (and not tokenResponse) thanks for your help

I used react-OAuth in react and I successfully get "code" but each time I get code, after generating tokens in the backend I get a refresh token. In Ideal conditions,...

`credential` and `select_by` are optional in `CredentialResponse`. Is there a particular reason for that? https://github.com/MomenSherif/react-oauth/blob/aac1c931d13dc719afd99467ce8d97adba5477be/packages/%40react-oauth/google/src/types/index.ts#L55-L66 The [reference](https://developers.google.com/identity/gsi/web/reference/js-reference#CredentialResponse) has mention of them being optional. Have you faced a case where they...

Hi, currently I'm using prompt consent window for logging in. When the prompt opens, I set the Login button loading in my app. But I want to catch the event...