fix(auth): App Link HTTPS pour le retour OIDC (Chrome bloque le schéma custom)
Build APK / build (push) Successful in 2m29s

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
neckfire
2026-07-13 10:28:04 +02:00
co-authored by Claude Opus 4.8
parent 3471c82c61
commit 1fe4528b0b
2 changed files with 21 additions and 2 deletions
+2 -1
View File
@@ -5,6 +5,7 @@ class Config {
// OIDC pocket-id (client public + PKCE)
static const String oidcIssuer = 'https://pocket.nfteam.ovh';
static const String oidcClientId = '83678fb3-9268-42c1-8dcb-0fb141692a6d';
static const String oidcRedirect = 'nfteam.gamemanager://oidc';
// App Link HTTPS (fiable ; le schéma custom est bloqué par Chrome au retour)
static const String oidcRedirect = 'https://gamemanager-api.nfteam.ovh/oidc/callback';
static const List<String> oidcScopes = ['openid', 'profile', 'email'];
}