> ## Documentation Index
> Fetch the complete documentation index at: https://stytch.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Add Google One Tap

> Enable Google One Tap in your application to let users authenticate with a single prompt.

Google One Tap lets users authenticate with a single prompt instead of a full OAuth consent screen.

<Note>
  When a user signs in via One Tap, you receive a JWT but **no access\_token or refresh\_token**, so you cannot call Google APIs for that user.
</Note>

## Prerequisites

* Configure Google as an OAuth provider in Stytch.
* Add your application's domain as an **Authorized JavaScript Origin** in the Google Cloud Console.

If you haven't set up the Google provider yet, start with the Google provider setup guide:
[Google OAuth setup](/consumer-auth/authentication/oauth/adding-providers/google-oauth)

## Enable One Tap in the Dashboard

In the [Stytch Dashboard](https://stytch.com/dashboard/oauth), navigate to **OAuth > Providers > Google** and enable **One Tap**.

## Update your SDK config

Enable One Tap in your OAuth providers config. Example (React/Next.js):

```jsx theme={null}
import { Products } from "@stytch/react";

const config = {
  products: [Products.oauth],
  oauthOptions: {
    providers: [{ type: "google", one_tap: true }],
  },
};
```

## Next steps

* [Add OAuth to Stytch Login](/consumer-auth/authentication/oauth/adding-oauth-to-stytch-login)
* [OAuth overview](/consumer-auth/authentication/oauth/overview)
