React wrapper for google one tap authentication
npm install react-google-one-tap-login
OR
yarn add react-google-one-tap-login
import { useGoogleOneTapLogin } from 'react-google-one-tap-login';
useGoogleOneTapLogin({
onError: error => console.log(error),
onSuccess: response => console.log(response),
googleAccountConfigs: {
client_id: // Your google client id here !!!
},
});
import React from 'react';
import ReactDOM from 'react-dom';
import GoogleOneTapLogin from 'react-google-one-tap-login';
ReactDOM.render(
<GoogleOneTapLogin onError={(error) => console.log(error)} onSuccess={(response) => console.log(response)} googleAccountConfigs={{ client_id: /* Your google client id here !!! */ }} />,
document.getElementById('root')
);
Name | Type | Required | Description |
---|---|---|---|
disabled | boolean | false | Disable the login prompt |
onError | callback | false | onError : Error |
onSuccess | callback | false | onSuccess : GoogleEndpointResponse (See below) |
disableCancelOnUnmount | boolean | false | Disable cancelation of one tap login on unmount |
googleAccountConfigs | object | true | Google One Tap JS API Reference |
Name | Type |
---|---|
iss | string |
sup | string |
azp | string |
aud | string |
iat | string |
exp | string |
name | string |
string | |
local | string |
picture | string |
given_name | string |
family_name | string |
email_verified | string |