App Logo
console.cloud.google.com

Create OAuth client (Web application)

Create a Web-application OAuth 2.0 client in the Google Cloud Console (Google Auth Platform) for a project and return its clientId + clientSecret. Returns the full credential, including the client secret (the success dialog itself only shows the id). Requires the browser to already be signed in to Google, and a pre-existing OAuth consent screen for the project.

Input

name required

Display name for the OAuth client (console-only label)

account required

Google account the client is created under. Must be the browser session's DEFAULT (authuser=0) account - the script verifies this and fails loud on a mismatch; it does not switch accounts.

projectId required

GCP project id that owns the OAuth consent screen, e.g. gen-lang-client-0289504322

redirectUris required

Authorised redirect URIs, e.g. https://your-app.vercel.app/auth/callback/google

Output

name required
clientId required
clientSecret required

Shown only at creation; store it now

FAQ

Create a Web-application OAuth 2.0 client in the Google Cloud Console (Google Auth Platform) for a project and return its clientId + clientSecret. Returns the full credential, including the client secret (the success dialog itself only shows the id). Requires the browser to already be signed in to Google, and a pre-existing OAuth consent screen for the project.
Required: account, projectId, name, redirectUris.
It returns name, clientId, clientSecret.
Yes. It acts as you on console.cloud.google.com: on your own Chrome it reuses your session, and on a Reduck-hosted browser it loads the console.cloud.google.com cookies saved by the Reduck extension.
It makes changes on console.cloud.google.com, like sending, posting or booking something.
Ask an AI agent connected to Reduck to run reduck/console.cloud.google.com/create_oauth_client, or run it from a terminal with the Reduck CLI: npx @reduck-ai/cli@latest run --script reduck/console.cloud.google.com/create_oauth_client
It is part of Reduck's official curated catalogue.

Start building not clicking