1.6 KiB
1.6 KiB
OpenSky Auth Setup
God's Eye View uses explicit auth modes for /api/opensky:
OPENSKY_AUTH_MODE=oauth(default, recommended)OPENSKY_AUTH_MODE=auto(OAuth first, then Basic fallback)OPENSKY_AUTH_MODE=basicOPENSKY_AUTH_MODE=anon
Reference: OpenSky REST API docs recommend OAuth2 Client Credentials flow.
Quick Start (OAuth Client JSON)
Import credentials from JSON (clientId/clientSecret or client_id/client_secret) into Keychain:
./scripts/opensky-import-client.sh ~/Downloads/credentials.json
# or: npm run opensky:import -- ~/Downloads/credentials.json
Then launch:
./scripts/dev-fresh.sh
Expected startup lines:
OpenSky auth mode: oauthOpenSky OAuth: configured
Optional: Launch With File (No Keychain Import)
OPENSKY_CREDENTIALS_FILE=~/Downloads/credentials.json ./scripts/dev-fresh.sh
Launchers resolve OAuth creds in this order:
OPENSKY_CLIENT_ID+OPENSKY_CLIENT_SECRETOPENSKY_CREDENTIALS_FILE- Keychain (
opensky-network/client_id,client_secret)
Basic Auth (Legacy)
Basic auth is still supported for now, but OpenSky is moving away from it.
OPENSKY_AUTH_MODE=basic ./scripts/dev-fresh.sh
Troubleshooting
Inspect proxy headers:
curl -si http://localhost:4173/api/opensky | grep -iE 'HTTP/|X-OpenSky-Auth'
Useful reasons:
oauth_invalid_or_missing: OAuth client not found/usableoauth_invalid_credentials: OAuth client rejected by OpenSkybasic_invalid_credentials: username/password rejectedmissing_basic_creds: basic mode missing user/passrate_limited: OpenSky throttling