Google Workspace CLI authentication setup and management. Use when users need to set up OAuth credentials, authenticate with Google APIs, or troubleshoot authentication issues.
gws auth manages OAuth2 authentication for all Google Workspace services.
Disclaimer:
gwsis not the official Google CLI. This is an independent, open-source project not endorsed by or affiliated with Google.
Before executing any gws command, verify the CLI is installed:
gws version
If not found, install: go install github.com/omriariav/workspace-cli/cmd/gws@latest
| Task | Command |
|---|---|
| Check auth status | gws auth status |
| Login (all scopes) | gws auth login |
| Login (specific services) | gws auth login --services gmail,calendar,chat |
| Login with credentials | gws auth login --client-id <id> --client-secret <secret> |
| Logout (revokes token) | gws auth logout |
If you haven't set up Google Cloud credentials yet, see the detailed setup guide: Setup Guide
Quick summary:
gws auth logingws auth status
Shows whether you're authenticated, the current user email, and token expiry info.
gws auth login [flags]
Flags:
--client-id string — OAuth client ID (overrides env/config)--client-secret string — OAuth client secret (overrides env/config)--services string — Comma-separated services to authorize (e.g. gmail,calendar,chat). Omit for all scopes.Opens a browser for Google OAuth consent. The token is stored at ~/.config/gws/token.json.
Available services: gmail, calendar, drive, docs, sheets, slides, tasks, chat, forms, contacts
Credential sources (in priority order):
--client-id, --client-secret)GWS_CLIENT_ID, GWS_CLIENT_SECRET)~/.config/gws/config.yaml)gws auth logout
Revokes the token server-side with Google, then deletes the local token at ~/.config/gws/token.json.
export GWS_CLIENT_ID="your-client-id.apps.googleusercontent.com"
export GWS_CLIENT_SECRET="your-client-secret"
~/.config/gws/config.yaml)client_id: "your-client-id.apps.googleusercontent.com"
client_secret: "your-client-secret"
services:
- gmail
- calendar
- chat
~/.config/gws/token.json (atomic writes, file-locked)~/.config/gws/granted_services.json--services to request only needed scopes (smaller consent screen)services: [gmail, calendar, chat]gws auth login --services gmail,calendar,chat,drivegws auth status before running any gws command to verify authenticationreferences/setup-guide.mdgws auth logout then gws auth login