From 956b9321a97849b0a15241a2063933172cd2bbe2 Mon Sep 17 00:00:00 2001 From: stopflock Date: Sat, 19 Jul 2025 16:13:42 -0500 Subject: [PATCH] submission from queue still not working, but login issue fixed by creating osm application correctly (non-confidential) --- lib/services/auth_service.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/services/auth_service.dart b/lib/services/auth_service.dart index 950340b..2949e14 100644 --- a/lib/services/auth_service.dart +++ b/lib/services/auth_service.dart @@ -7,9 +7,7 @@ import 'package:http/http.dart' as http; /// Handles PKCE OAuth login with OpenStreetMap. class AuthService { - /// Paste the **client ID** shown on the OSM OAuth2 application page - /// (it can be alphanumeric like ‘lzEr2zjBGZ2…’). - static const String _clientId = 'lzEr2zjBGZ2TvJWr3QGxNcKxigp-mQ6pRWIUhI_Bqx8'; + static const String _clientId = 'HNbRD_Twxf0_lpkm-BmMB7-zb-v63VLdf_bVlNyU9qs'; static const _redirect = 'flockmap://auth'; late final OAuth2Helper _helper;