authsome_core 1.4.0
authsome_core: ^1.4.0 copied to clipboard
AuthSome authentication SDK for Dart — framework-agnostic core with auto-config support.
authsome_core #
Framework-agnostic Dart SDK for AuthSome authentication.
Features #
- Complete API client for AuthSome server
- Token management and auto-refresh
- MFA support
- Social/OAuth provider support
Getting Started #
import 'package:authsome_core/authsome_core.dart';
final client = AuthSomeClient(
config: AuthClientConfig(baseUrl: 'https://your-authsome-server.com'),
);
final session = await client.signIn(
email: 'user@example.com',
password: 'password',
);
Documentation #
See the AuthSome documentation for more details.