We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ae31c commit a40cb52Copy full SHA for a40cb52
lib/src/services/jwt_auth_token_service.dart
@@ -33,7 +33,7 @@ class JwtAuthTokenService implements AuthTokenService {
33
'your-very-hardcoded-super-secret-key-replace-this-in-prod';
34
35
// Define token issuer and default expiry duration
36
- static const String _issuer = 'https://your-api-domain.com'; // Replace
+ static const String _issuer = 'http://localhost:8080';
37
static const Duration _tokenExpiryDuration = Duration(hours: 1);
38
39
// --- Interface Implementation ---
0 commit comments