Installation
Choose your platform to get started with AuthStack.
Flutter
Section titled “Flutter”Add the AuthStack client to your pubspec.yaml:
dependencies: voostackauth_client: ^1.0.0Then run:
flutter pub getDependencies
Section titled “Dependencies”The Flutter SDK depends on:
diofor HTTP requestsflutter_secure_storagefor token storagegoogle_sign_in(optional) for Google authentication
React / Next.js
Section titled “React / Next.js”Install via npm:
npm install @voostack/authOr with yarn:
yarn add @voostack/authInstall via npm:
npm install @voostack/auth-vueREST API
Section titled “REST API”No SDK required! Use the REST API directly:
curl -X POST https://api.authstack.voostack.com/api/Authentication/login \ -H "Content-Type: application/json" \ -d '{"email": "user@example.com", "password": "password123"}'Environment Variables
Section titled “Environment Variables”Configure your application with these environment variables:
VOOSTACKAUTH_URL=https://api.authstack.voostack.comVOOSTACKAUTH_CLIENT_ID=your-client-idNext Steps
Section titled “Next Steps”- Concepts - Understand tokens and authentication flow
- Flutter Integration - Complete Flutter guide