Appearance
Install
GoLogin offers two integration paths: a desktop app for manual browser sessions and an SDK for programmatic automation.
1. Desktop App (Manual Use)
Download the platform-specific installer from https://gologin.com/:
- Windows:
.exeinstaller - macOS (Intel):
.dmg - macOS (Apple Silicon / M-series):
.dmg(separate build) - Linux:
.AppImageor.deb - Android: Google Play Store
No command-line install step is required for the desktop app. Sign in with your GoLogin account after installation.
2. Node.js SDK
Requires Node.js 16+ and a GoLogin API token (obtained from Settings > API in the dashboard at https://app.gologin.com/personalArea/TokenApi).
bash
npm i gologin3. Python SDK
Requires Python 3.8+ and a virtual environment.
bash
python3 -m venv venv
source venv/bin/activate
pip install gologin selenium webdriver-managerOn Windows, activate the venv with:
powershell
.\venv\Scripts\Activate.ps1
pip install gologin selenium webdriver-managerAPI Token
All SDK calls require a GoLogin API token. Set it as an environment variable:
bash
export GL_API_TOKEN=your_token_hereOr pass it directly in code (development only; prefer env vars in production).