Back to Browse

gogcli Setup: Google Cloud OAuth, and CLI Authentication

71 views
May 7, 2026
6:23

This video walks through the initial setup required to use gogcli with Google Workspace. We install gogcli, create a dedicated Google Cloud project, enable the required APIs, configure Google Auth Platform, create an OAuth client, download the OAuth client JSON, and authenticate gogcli from the terminal. ## Install gogcli macOS: brew install gogcli gog --version Windows PowerShell: Download the Windows ZIP from: https://github.com/steipete/gogcli/releases/latest Then run: $zip = Join-Path $HOME 'Downloads\gogcli_0.15.0_windows_amd64.zip' $installDir = Join-Path $HOME 'Tools\gogcli' New-Item -ItemType Directory -Force $installDir Expand-Archive $zip $installDir -Force Set-Location $installDir .\gog.exe --version ## Google Cloud Setup 1. Create a Google Cloud project 2. Select the project 3. Enable Gmail, Calendar, and Drive APIs 4. Configure Google Auth Platform 5. Create a Desktop OAuth client 6. Download the OAuth client JSON ## Authenticate gogcli macOS: cd ~/Downloads gog auth credentials set client_secret_gogcli.json gog auth add [email protected] --services gmail,calendar,drive gog auth doctor --check Windows PowerShell: Set-Location $HOME\Downloads .\gog.exe auth credentials set client_secret_gogcli.json .\gog.exe auth add [email protected] --services gmail,calendar,drive .\gog.exe auth doctor --check ## Optional verification gog auth list --check gog me gog gmail labels list gog calendar events --today gog drive ls --max 10 ## References gogcli: https://gogcli.sh/ gogcli Quickstart: https://gogcli.sh/quickstart.html gogcli Commands: https://gogcli.sh/commands/ Google Cloud Console: https://console.cloud.google.com Google Auth Platform: https://console.cloud.google.com/auth Google Cloud API Library: https://console.cloud.google.com/apis/library gogcli GitHub Releases: https://github.com/steipete/gogcli/releases

Download

0 formats

No download links available.

gogcli Setup: Google Cloud OAuth, and CLI Authentication | NatokHD