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). Needs console.cloud.google.com cookies (loggedIn) 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

Start building not clicking